示例#1
0
 public CallStatement(Identifier funcName)
 {
     this.fc = new FunctionCall(funcName, new Sequence<Expression>());
 }
示例#2
0
 public CallStatement(FunctionCall fc)
 {
     this.fc = fc;
 }