remove unused variables

This commit is contained in:
Sebastian McKenzie 2015-01-07 22:50:24 +11:00
parent ebaa735adc
commit ca12e87370
2 changed files with 1 additions and 3 deletions

View File

@ -55,7 +55,7 @@ exports.ThisExpression = function () {
this.push("this");
};
exports.CallExpression = function (node, print, parent) {
exports.CallExpression = function (node, print) {
print(node.callee);
this.push("(");

View File

@ -1,8 +1,6 @@
var t = require("../../types");
var _ = require("lodash");
var OBJECT_ASSIGN_MEMBER = t.memberExpression(t.identifier("Object"), t.identifier("assign"));
var isProtoKey = function (node) {
return t.isLiteral(t.toComputedKey(node, node.key), { value: "__proto__" });
};