From: yangguo@chromium.org Date: Wed, 3 Jul 2013 10:38:20 +0000 (+0000) Subject: Fix small mistake in d8.js. X-Git-Tag: upstream/4.7.83~13557 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f23ed09eef2eef6fe3e3df6bcac8767df7a7035a;p=platform%2Fupstream%2Fv8.git Fix small mistake in d8.js. R=mvstanton@chromium.org BUG=v8:2756 Review URL: https://codereview.chromium.org/18572009 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@15463 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- diff --git a/src/d8.js b/src/d8.js index df10461..3efea06 100644 --- a/src/d8.js +++ b/src/d8.js @@ -1020,7 +1020,7 @@ DebugRequest.prototype.changeBreakpointCommandToJSONRequest_ = args.substring(nextPos + 1, args.length) : 'all'; if (!arg2) { arg2 = 'all'; // if unspecified, set for all. - } if (arg2 == 'unc') { // check for short cut. + } else if (arg2 == 'unc') { // check for short cut. arg2 = 'uncaught'; } excType = arg2;