| 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);
|
|
|