mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-21 12:07:57 +01:00
Fix REPL bug.
This commit is contained in:
@@ -15,11 +15,7 @@ defineModule("javascript", {
|
||||
// TODO: Clean this up.
|
||||
|
||||
var JavaScript = Module("javascript", {
|
||||
Local: function (dactyl, modules, window) ({
|
||||
init: function () {
|
||||
this.modules = modules;
|
||||
this.window = window;
|
||||
|
||||
this._stack = [];
|
||||
this._functions = [];
|
||||
this._top = {}; // The element on the top of the stack.
|
||||
@@ -34,6 +30,14 @@ var JavaScript = Module("javascript", {
|
||||
|
||||
this._nullSandbox = Cu.Sandbox("about:blank");
|
||||
},
|
||||
|
||||
Local: function (dactyl, modules, window) ({
|
||||
init: function init() {
|
||||
this.modules = modules;
|
||||
this.window = window;
|
||||
|
||||
init.supercall(this);
|
||||
},
|
||||
}),
|
||||
|
||||
lazyInit: true,
|
||||
@@ -743,7 +747,7 @@ var JavaScript = Module("javascript", {
|
||||
return this.rootNode;
|
||||
}),
|
||||
|
||||
__noSuchMethod__: function (meth, args) Buffer[meth].apply(Buffer, [this.rootNode].concat(args)),
|
||||
__noSuchMethod__: function (meth, args) Buffer[meth].apply(Buffer, [this.rootNode].concat(args))
|
||||
});
|
||||
|
||||
modules.CommandREPLMode = Class("CommandREPLMode", modules.CommandMode, {
|
||||
|
||||
Reference in New Issue
Block a user