Example #1
0
 private ExpansionContext(Stack<MethodBase> stack, Scope scope, NameGenerator names, IEnumerable<KeyValuePair<Sym, Expression>> env)
 {
     Stack = stack;
     Scope = scope;
     Names = names;
     Env = env.ToDictionary();
 }
Example #2
0
 private ExpansionContext(Stack<MethodBase> stack, Scope scope, NameGenerator names)
     : this(stack, scope, names, null)
 {
 }
Example #3
0
 private ExpansionContext(Stack <MethodBase> stack, Scope scope, NameGenerator names)
     : this(stack, scope, names, null)
 {
 }