Remove unused var
This commit is contained in:
Vendored
+3
-3
@@ -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');
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user