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