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