Inheritance: AjTalk.Compiler.ICompiler
Exemplo n.º 1
0
 public void Setup()
 {
     this.compiler = new SimpleCompiler();
 }
Exemplo n.º 2
0
 private object Evaluate(Machine machine, string code)
 {
     SimpleCompiler compiler = new SimpleCompiler();
     Block block = compiler.CompileBlock(code);
     return block.Execute(machine, null);
 }