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