コード例 #1
0
ファイル: FunctionCall.cs プロジェクト: galderli/dp2compiler
 public FunctionCall(Identifier functionName, ArgumentList argumentList) : base(functionName.token)
 {
     this.functionName = functionName;
     this.argumentList = argumentList;
 }
コード例 #2
0
 public bool visitLeave(ArgumentList argumentList)
 {
     return true;
 }
コード例 #3
0
ファイル: FunctionCall.cs プロジェクト: galderli/dp2compiler
 public FunctionCall(Identifier functionName) : base(functionName.token)
 {
     this.functionName = functionName;
     argumentList = null;
 }
コード例 #4
0
 public bool visitEnter(ArgumentList argumentList)
 {
     return true;
 }