mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
104 lines
2.5 KiB
JavaScript
104 lines
2.5 KiB
JavaScript
'use strict';
|
|
var ok = require('assert').ok;
|
|
|
|
var Node = require('./Node');
|
|
var isCompoundExpression = require('../util/isCompoundExpression');
|
|
|
|
class FunctionCall extends Node {
|
|
constructor(def) {
|
|
super('FunctionCall');
|
|
this.callee = def.callee;
|
|
|
|
ok(this.callee, '"callee" is required');
|
|
|
|
let args = this.args = def.args;
|
|
|
|
if (args) {
|
|
if (!Array.isArray(args)) {
|
|
throw new Error('Invalid args');
|
|
}
|
|
|
|
for (let i=0; i<args.length; i++) {
|
|
let arg = args[i];
|
|
if (!arg) {
|
|
throw new Error('Arg ' + i + ' is not valid for function call: ' + JSON.stringify(this.toJSON(), null, 2));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
generateCode(codegen) {
|
|
this.callee = codegen.generateCode(this.callee);
|
|
this.args = codegen.generateCode(this.args);
|
|
|
|
return this;
|
|
}
|
|
|
|
writeCode(writer) {
|
|
var callee = this.callee;
|
|
var args = this.args;
|
|
|
|
var wrapWithParens = isCompoundExpression(callee);
|
|
|
|
if (wrapWithParens) {
|
|
writer.write('(');
|
|
}
|
|
|
|
writer.write(callee);
|
|
|
|
if (wrapWithParens) {
|
|
writer.write(')');
|
|
}
|
|
|
|
writer.write('(');
|
|
|
|
if (args && args.length) {
|
|
for (let i=0, argsLen = args.length; i<argsLen; i++) {
|
|
if (i !== 0) {
|
|
writer.write(', ');
|
|
}
|
|
|
|
let arg = args[i];
|
|
if (!arg) {
|
|
throw new Error('Arg ' + i + ' is not valid for function call: ' + JSON.stringify(this.toJSON()));
|
|
}
|
|
writer.write(arg);
|
|
}
|
|
}
|
|
|
|
writer.write(')');
|
|
|
|
|
|
}
|
|
|
|
walk(walker) {
|
|
this.callee = walker.walk(this.callee);
|
|
this.args = walker.walk(this.args);
|
|
}
|
|
|
|
toString() {
|
|
var callee = this.callee;
|
|
var args = this.args;
|
|
|
|
var result = callee.toString() + '(';
|
|
|
|
if (args && args.length) {
|
|
for (let i=0, argsLen = args.length; i<argsLen; i++) {
|
|
if (i !== 0) {
|
|
result += ', ';
|
|
}
|
|
|
|
let arg = args[i];
|
|
if (!arg) {
|
|
throw new Error('Arg ' + i + ' is not valid for function call: ' + JSON.stringify(this.toJSON()));
|
|
}
|
|
result += arg;
|
|
}
|
|
}
|
|
|
|
result += ')';
|
|
return result;
|
|
}
|
|
}
|
|
|
|
module.exports = FunctionCall; |