Exemplo n.º 1
0
 public FunctionCall(Identifier functionName, ArgumentList argumentList) : base(functionName.token)
 {
     this.functionName = functionName;
     this.argumentList = argumentList;
 }
Exemplo n.º 2
0
 public bool visitLeave(ArgumentList argumentList)
 {
     return true;
 }
Exemplo n.º 3
0
 public FunctionCall(Identifier functionName) : base(functionName.token)
 {
     this.functionName = functionName;
     argumentList = null;
 }
Exemplo n.º 4
0
 public bool visitEnter(ArgumentList argumentList)
 {
     return true;
 }