(atToken: Token, callName: ExpressionNode)
| 371 | arguments: ArgumentNode[] = []; |
| 372 | |
| 373 | constructor(atToken: Token, callName: ExpressionNode) { |
| 374 | super(atToken); |
| 375 | this.callName = callName; |
| 376 | this.extend(callName); |
| 377 | } |
| 378 | |
| 379 | getChildren(): RecursiveParseNodeArray { |
| 380 | return [this.callName, this.arguments]; |