Revision: 15463
Author: [email protected]
Date: Wed Jul 3 03:38:20 2013
Log: Fix small mistake in d8.js.
[email protected]
BUG=v8:2756
Review URL: https://codereview.chromium.org/18572009
http://code.google.com/p/v8/source/detail?r=15463
Modified:
/branches/bleeding_edge/src/d8.js
=======================================
--- /branches/bleeding_edge/src/d8.js Fri Mar 22 09:51:28 2013
+++ /branches/bleeding_edge/src/d8.js Wed Jul 3 03:38:20 2013
@@ -1020,7 +1020,7 @@
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;
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.