Skip to content

Commit

Permalink
repl: eliminate var in function _memory
Browse files Browse the repository at this point in the history
  • Loading branch information
gengjiawen committed Mar 7, 2019
1 parent 6a83057 commit 3ca5b2a
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 @@ -1323,7 +1323,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 @@ -1342,9 +1342,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 3ca5b2a

Please sign in to comment.