Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(426)

Unified Diff: test/debugger/debug/es8/async-debug-builtin-predictions.js

Issue 2731273002: [debug] add exception predictions to builtins where missing. (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« test/cctest/test-debug.cc ('K') | « test/cctest/test-debug.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/debugger/debug/es8/async-debug-builtin-predictions.js
diff --git a/test/debugger/debug/es8/async-debug-builtin-predictions.js b/test/debugger/debug/es8/async-debug-builtin-predictions.js
new file mode 100644
index 0000000000000000000000000000000000000000..396e9ecc8fa4881aee42a0b7b9b4a5fd7e1ea153
--- /dev/null
+++ b/test/debugger/debug/es8/async-debug-builtin-predictions.js
@@ -0,0 +1,42 @@
+// Copyright 2017 the V8 project authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+Debug = debug.Debug
+
+var exception = null;
+
+function listener(event, exec_state, event_data, data) {
+ if (event != Debug.DebugEvent.Exception) return;
+ try {
+ var line = exec_state.frame(0).sourceLineText();
+ var match = /Exception/.exec(line);
+ assertNotNull(match);
+ } catch (e) {
+ exception = e;
+ }
+}
+
+// Caught throw, events on any exception.
+Debug.setListener(listener);
+Debug.setBreakOnException();
+
+var thenable = {
+ get then() {
+ throw new Error(); // Exception
+ }
+};
+
+var p = Promise.resolve(thenable);
+
+async function foo() {
+ await thenable;
+}
+
+foo();
+
+%RunMicrotasks();
+
+Debug.setListener(null);
+Debug.clearBreakOnException();
+assertNull(exception);
« test/cctest/test-debug.cc ('K') | « test/cctest/test-debug.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698