add computed property names support

This commit is contained in:
Sebastian McKenzie
2014-09-29 03:43:21 +10:00
parent d87c7942a3
commit 99fb31638e
7 changed files with 62 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
var util = require("../util");
var _ = require("lodash");
exports.ObjectExpression = function (node) {
var hasComputed = false;
var computed = [];
node.properties = node.properties.filter(function (prop) {
if (prop.computed) {
hasComputed = true;
computed.unshift(prop);
return false;
} else {
return true;
}
});
if (!hasComputed) return;
var container = util.template("function-return-obj", {
OBJECT: node
});
_.each(computed, function (prop) {
container.callee.body.body.unshift(util.template("obj-key-set", {
KEY: prop.key,
VALUE: prop.value
}, true));
});
return container;
};