123456789101112131415161718 |
- import { Expression } from './expression';
- export class FunctionCall extends Expression {
- constructor (id, actualParameters) {
- super();
- this.id = id;
- this.actualParameters = actualParameters;
- }
- get isMainCall () {
- return this.id === null;
- }
- get parametersSize () {
- return this.actualParameters.length;
- }
- }
|