Remove unused var

This commit is contained in:
kpdecker
2013-07-30 11:07:41 -05:00
parent 03310df95e
commit 9ca4f9c606
2 changed files with 6 additions and 6 deletions
+3 -3
View File
@@ -1667,10 +1667,10 @@ JavaScriptCompiler.prototype = {
// [lookupData] // [lookupData]
// //
// On stack, before: ... // On stack, before: ...
// On stack, after: data[id], ... // On stack, after: data, ...
// //
// Push the result of looking up `id` on the current data // Push the data lookup operator
lookupData: function(id) { lookupData: function() {
this.push('data'); this.push('data');
}, },
@@ -350,10 +350,10 @@ JavaScriptCompiler.prototype = {
// [lookupData] // [lookupData]
// //
// On stack, before: ... // On stack, before: ...
// On stack, after: data[id], ... // On stack, after: data, ...
// //
// Push the result of looking up `id` on the current data // Push the data lookup operator
lookupData: function(id) { lookupData: function() {
this.push('data'); this.push('data');
}, },