repl: remove variable redeclaration
`match` and `filter` are declared twice with `var` in `repl.js`. Declare the variables only once. PR-URL: https://github.com/nodejs/node/pull/4977 Reviewed-By: Brian White <mscdex@mscdex.net> Reviewed-By: James M Snell <jasnell@gmail.com>
This commit is contained in:
parent
260512677b
commit
ba81d152ec
@ -655,7 +655,7 @@ REPLServer.prototype.complete = function(line, callback) {
|
|||||||
// list of completion lists, one for each inheritance "level"
|
// list of completion lists, one for each inheritance "level"
|
||||||
var completionGroups = [];
|
var completionGroups = [];
|
||||||
|
|
||||||
var completeOn, match, filter, i, group, c;
|
var completeOn, i, group, c;
|
||||||
|
|
||||||
// REPL commands (e.g. ".break").
|
// REPL commands (e.g. ".break").
|
||||||
var match = null;
|
var match = null;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user