Example #1
0
 public Expression AddLocal(Expression localVariable) =>
 // $callFrame.AddLocal(...)
 CallFrame_Expressions.AddLocal(CallFrame, localVariable);
Example #2
0
 protected BaseScope(Compiler compiler, Expression callFrame = null)
 {
     Compiler  = compiler;
     CallFrame = callFrame ?? CallFrame_Expressions.Current();
     variables = new LinkedDictionary <Symbol, ScopeVariable>();
 }