Пример #1
0
 public CallStatement(Identifier funcName)
 {
     this.fc = new FunctionCall(funcName, new Sequence<Expression>());
 }
Пример #2
0
 public CallStatement(FunctionCall fc)
 {
     this.fc = fc;
 }