functionCall.js 273 B

1234567891011121314
  1. import { Expression } from './expression';
  2. export class FunctionCall extends Expression {
  3. constructor (id, actualParameters) {
  4. super();
  5. this.id = id;
  6. this.actualParameters = actualParameters;
  7. }
  8. get parametersSize () {
  9. return this.actualParameters.length;
  10. }
  11. }