예제 #1
0
파일: Runner.cs 프로젝트: kayateia/climoo
 /// <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();
 }
예제 #2
0
파일: Climoo.cs 프로젝트: kayateia/climoo
 public ClimooObj( string code )
 {
     _code = Compiler.Compile( "second", code );
 }