Esempio n. 1
0
 public Interpreter(ref LiveChartsDrawer l)
 {
     lexer  = new Lexer();
     vars   = VariableFileHandle.getVariables();
     parser = new Parser(vars, ref l);
 }
Esempio n. 2
0
 /// <summary>
 /// Create a new parser object. This implementation has the WRITE_TO_FILE flag set to true.
 /// </summary>
 public Parser(Hashtable variables, ref LiveChartsDrawer l)
 {
     this.variables = variables;
     this.l         = l;
     WRITE_TO_FILE  = true;
 }