diff options
author | Michaƫl Zasso <mic.besace@gmail.com> | 2016-01-15 09:53:11 +0100 |
---|---|---|
committer | Roman Reiss <me@silverwind.io> | 2016-01-16 19:54:25 +0100 |
commit | 0ec093cd410b8797b02055a445d650f72fd16796 (patch) | |
tree | 4e6977b706731d2365dd89b39f0b36e73a046da7 /lib/_debugger.js | |
parent | 162e16afdbb99036bb232619c66a95cea50614a2 (diff) | |
download | node-new-0ec093cd410b8797b02055a445d650f72fd16796.tar.gz |
lib,test: remove extra semicolons
PR-URL: https://github.com/nodejs/node/pull/2205
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Roman Reiss <me@silverwind.io>
Diffstat (limited to 'lib/_debugger.js')
-rw-r--r-- | lib/_debugger.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/_debugger.js b/lib/_debugger.js index 26f545c535..ed5573aff4 100644 --- a/lib/_debugger.js +++ b/lib/_debugger.js @@ -574,7 +574,7 @@ Client.prototype.mirrorObject = function(handle, depth, cb) { }); cb(null, mirror); } - }; + } }); return; } else if (handle.type === 'function') { @@ -800,7 +800,7 @@ function Interface(stdin, stdout, args) { } else { self.repl.context[key] = fn; } - }; + } // Copy all prototype methods in repl context // Setup them as getters if possible |