| Index: src/d8.js
|
| diff --git a/src/d8.js b/src/d8.js
|
| index df1046133fbff449b29d40aa482b691ecff936fa..3efea063787a7e6ef1b2869d34627efbc74f9356 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;
|
|
|