Esempio n. 1
0
 public CodeGenerationContext(ESCompiler compiler, Object selfValue, ParameterExpression[] rootParameters) : this(compiler) {
     this.selfValue      = selfValue;
     this.rootParameters = rootParameters;
 }
Esempio n. 2
0
 public ASTGenerator(ESCompiler esCompiler, CodeGenerationContext context)
 {
     this.compiler = esCompiler;
     this.context  = context;
     bindToCompiler();
 }
Esempio n. 3
0
 public CodeGenerationContext(ESCompiler compiler)
 {
     identityExpression = Expression.Constant(identity);
     objectSpace        = compiler.ObjectSpace;
     bindToKernel();
 }