Example #1
0
 private void SetCurrentFunction(NodeFnExpr fn)
 {
     holder = new FunctionHolder(holder, fn);
 }
Example #2
0
 private void ReleaseCurrentFunction()
 {
     holder = holder.previous;
 }
Example #3
0
 internal FunctionHolder(FunctionHolder previous, NodeFnExpr current)
 {
     this.previous = previous;
     this.current = current;
 }