public void Setup() { this.compiler = new SimpleCompiler(); }
private object Evaluate(Machine machine, string code) { SimpleCompiler compiler = new SimpleCompiler(); Block block = compiler.CompileBlock(code); return block.Execute(machine, null); }