marko/compiler/ast/FunctionCall.js
2016-01-11 13:15:26 -07:00

51 lines
1.2 KiB
JavaScript

'use strict';
var ok = require('assert').ok;
var Node = require('./Node');
class FunctionCall extends Node {
constructor(def) {
super('FunctionCall');
this.callee = def.callee;
ok(this.callee, '"callee" is required');
this.args = def.args;
if (this.args && !Array.isArray(this.args)) {
throw new Error('Invalid args');
}
}
generateCode(codegen) {
var callee = this.callee;
var args = this.args;
codegen.generateCode(callee);
codegen.write('(');
if (args && args.length) {
for (let i=0, argsLen = args.length; i<argsLen; i++) {
if (i !== 0) {
codegen.write(', ');
}
let arg = args[i];
if (!arg) {
throw new Error('Arg ' + i + ' is not valid for function call: ' + JSON.stringify(this.toJSON()));
}
codegen.generateCode(arg);
}
}
codegen.write(')');
}
walk(walker) {
this.callee = walker.walk(this.callee);
this.args = walker.walk(this.args);
}
}
module.exports = FunctionCall;