Example #1
0
 /// <summary>
 /// Run an AstNode tree synchronously. This will run the code from
 /// beginning to end, and then return.
 /// </summary>
 public void runSync( CodeFragment code )
 {
     setupConstants();
     code.root.run( _state );
     runSync();
 }
Example #2
0
 public ClimooObj( string code )
 {
     _code = Compiler.Compile( "second", code );
 }