コード例 #1
0
ファイル: Parser.cs プロジェクト: LayeLang/Laye
 private void SetCurrentFunction(NodeFnExpr fn)
 {
     holder = new FunctionHolder(holder, fn);
 }
コード例 #2
0
ファイル: Parser.cs プロジェクト: LayeLang/Laye
 private void ReleaseCurrentFunction()
 {
     holder = holder.previous;
 }
コード例 #3
0
ファイル: Parser.cs プロジェクト: LayeLang/Laye
 internal FunctionHolder(FunctionHolder previous, NodeFnExpr current)
 {
     this.previous = previous;
     this.current = current;
 }