Skip to content

Commit

Permalink
repl: eliminate var in function _memory
Browse files Browse the repository at this point in the history
PR-URL: #26496
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
  • Loading branch information
gengjiawen authored and BethGriggs committed Apr 16, 2019
1 parent 600929d commit ef767a2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/repl.js
Original file line number Diff line number Diff line change
Expand Up @@ -1319,7 +1319,7 @@ function _memory(cmd) {
let up = cmd.match(/[})]/g);
up = up ? up.length : 0;
dw = dw ? dw.length : 0;
var depth = dw - up;
let depth = dw - up;

if (depth) {
(function workIt() {
Expand All @@ -1338,9 +1338,9 @@ function _memory(cmd) {
});
} else if (depth < 0) {
// Going... up.
var curr = self.lines.level.pop();
const curr = self.lines.level.pop();
if (curr) {
var tmp = curr.depth + depth;
const tmp = curr.depth + depth;
if (tmp < 0) {
// More to go, recurse
depth += curr.depth;
Expand Down

0 comments on commit ef767a2

Please sign in to comment.