1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 03:17:58 +01:00

Normalise use of "res" vs "ret" for return variables.

This commit is contained in:
Doug Kearns
2011-03-07 21:41:07 +11:00
parent 7bf3f40ab0
commit 1c4c5e5ad3
6 changed files with 46 additions and 47 deletions

View File

@@ -180,8 +180,7 @@ var JavaScript = Module("javascript", {
this._top.statements.pop();
this._top = this._get(-2);
this._last = this._top.char;
let ret = this._stack.pop();
return ret;
return this._stack.pop();
},
_buildStack: function (filter) {