fix linting errors

This commit is contained in:
Sebastian McKenzie 2015-01-11 03:35:37 +11:00
parent 9f3e1eabfd
commit 24616fa08a
2 changed files with 1 additions and 5 deletions

View File

@ -141,10 +141,6 @@ Class.prototype.buildBody = function () {
var staticProps;
if (this.hasInstanceMutators) {
var protoId = util.template("prototype-identifier", {
CLASS_NAME: className
});
instanceProps = util.buildDefineProperties(this.instanceMutatorMap, true);
}

View File

@ -46,7 +46,7 @@ exports.Property = function (node, parent, file, scope) {
}
};
exports.ObjectExpression = function (node, parent, file, scope) {
exports.ObjectExpression = function (node) {
var mutatorMap = {};
var hasAny = false;