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

Unified Diff: test/mjsunit/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 | « test/debugger/testcfg.py ('k') | test/mjsunit/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/mjsunit/debug-allscopes-on-debugger.js
diff --git a/test/mjsunit/debug-allscopes-on-debugger.js b/test/mjsunit/debug-allscopes-on-debugger.js
deleted file mode 100644
index 17668cfc2449a14ab375ff7bfe07f41937a0c872..0000000000000000000000000000000000000000
--- a/test/mjsunit/debug-allscopes-on-debugger.js
+++ /dev/null
@@ -1,59 +0,0 @@
-// Copyright 2015 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.
-
-// Flags: --expose-debug-as debug
-
-Debug = debug.Debug
-var exception = null;
-var break_count = 0;
-
-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();
- var source = frameMirror.sourceLineText();
- print("paused at: " + source);
- assertTrue(source.indexOf("// Break " + break_count + ".") > 0,
- "Unexpected pause at: " + source + "\n" +
- "Expected: // Break " + break_count + ".");
- ++break_count;
-
- if (break_count !== expected_breaks) {
- exec_state.prepareStep(Debug.StepAction.StepIn);
- print("Next step prepared");
- }
- }
- } catch(e) {
- exception = e;
- print(e, e.stack);
- }
-};
-
-Debug.setListener(listener);
-
-var sum = 0;
-(function (){
- 'use strict';
-
- debugger; // Break 0.
- var i = 0; // Break 1.
- i++; // Break 2.
- i++; // Break 3.
- debugger; // Break 4.
- return i; // Break 5.
-}()); // Break 6.
-
-assertNull(exception); // Break 7.
-assertEquals(expected_breaks, break_count);
-
-Debug.setListener(null);
« no previous file with comments | « test/debugger/testcfg.py ('k') | test/mjsunit/es6/debug-promises/promise-all-caught.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698