functionCall.js 199 B

1234567891011
  1. export class FunctionCall {
  2. constructor (id, actualParameters) {
  3. this.id = id;
  4. this.actualParameters = actualParameters;
  5. }
  6. get parametersSize () {
  7. return this.actualParameters.length;
  8. }
  9. }