コード例 #1
0
ファイル: Compiler.cs プロジェクト: SealedSun/prx
 public void TeardownCompilerEngine()
 {
     engine = null;
     sctx = null;
     target = null;
     root = null;
 }
コード例 #2
0
ファイル: Compiler.cs プロジェクト: SealedSun/prx
 public void SetupCompilerEngine()
 {
     engine = new Engine();
     target = new Application("testApplication");
     sctx = new TestStackContext(engine, target);
 }