marko/compiler/ast/Vars.js
2015-12-28 21:55:29 -07:00

80 lines
2.2 KiB
JavaScript

'use strict';
var Node = require('./Node');
var Identifier = require('./Identifier');
class Vars extends Node {
constructor(def) {
super('Vars');
this.kind = def.kind || 'var';
this.declarations = def.declarations;
this.body = this.makeContainer(def.body);
}
generateCode(codegen) {
var declarations = this.declarations;
var kind = this.kind;
var isStatement = this.statement;
var body = this.body;
var selfInvoking = this.isFlagSet('selfInvoking');
var hasBody = (body && body.array && body.array.length > 0);
if(!selfInvoking && hasBody) {
this.setFlag('selfInvoking');
return codegen.builder.selfInvokingFunction([ this ]);
}
if (!declarations || !declarations.length) {
return;
}
for (let i=0; i<declarations.length; i++) {
var declaration = declarations[i];
if (i === 0) {
codegen.write(kind + ' ');
} else {
codegen.incIndent(4);
codegen.writeLineIndent();
}
var varId = declaration.id || declaration.name;
if (!(varId instanceof Identifier) && typeof varId !== 'string') {
throw new Error('Invalid variable name: ' + varId);
}
// TODO Validate the variable name
codegen.generateCode(varId);
var initValue;
if (declaration.hasOwnProperty('init')) {
initValue = declaration.init;
} else if (declaration.hasOwnProperty('value')) {
initValue = declaration.value;
}
if (initValue != null) {
codegen.write(' = ');
codegen.generateCode(initValue);
}
if (i !== 0) {
codegen.decIndent(4);
}
if (i < declarations.length - 1) {
codegen.write(',\n');
} else {
if (isStatement) {
codegen.write(';\n');
}
}
}
if(hasBody) {
codegen.generateCode(body);
}
}
}
module.exports = Vars;