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

Unified Diff: test/debugger/debug/debug-allscopes-on-debugger.js

Issue 2487673002: [debugger] Basic scope functionality and exception events in wrapper (Closed)
Patch Set: Formatting Created 4 years, 1 month 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
« no previous file with comments | « no previous file | test/debugger/debug/es6/debug-promises/promise-all-caught.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/debugger/debug/debug-allscopes-on-debugger.js
diff --git a/test/mjsunit/debug-allscopes-on-debugger.js b/test/debugger/debug/debug-allscopes-on-debugger.js
similarity index 79%
rename from test/mjsunit/debug-allscopes-on-debugger.js
rename to test/debugger/debug/debug-allscopes-on-debugger.js
index 17668cfc2449a14ab375ff7bfe07f41937a0c872..4f09b0a61ef9371f4fafa48884ccf2d4607b03e9 100644
--- a/test/mjsunit/debug-allscopes-on-debugger.js
+++ b/test/debugger/debug/debug-allscopes-on-debugger.js
@@ -2,22 +2,16 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-// Flags: --expose-debug-as debug
Debug = debug.Debug
var exception = null;
var break_count = 0;
+const expected_breaks = 8;
function listener(event, exec_state, event_data, data) {
try {
if (event == Debug.DebugEvent.Break) {
assertTrue(exec_state.frameCount() != 0, "FAIL: Empty stack trace");
- // Count number of expected breakpoints in this source file.
- if (!break_count) {
- var source_text = exec_state.frame(0).func().script().source();
- expected_breaks = source_text.match(/\/\/\s*Break\s+\d+\./g).length;
- print("Expected breaks: " + expected_breaks);
- }
var frameMirror = exec_state.frame(0);
frameMirror.allScopes();
« no previous file with comments | « no previous file | test/debugger/debug/es6/debug-promises/promise-all-caught.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698