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

Side by Side Diff: test/mjsunit/regress/regress-crbug-119800.js

Issue 2497973002: [debug-wrapper] Further extend the debug wrapper (Closed)
Patch Set: Address comments 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 unified diff | Download patch
« no previous file with comments | « test/mjsunit/regress/regress-5164.js ('k') | test/mjsunit/regress/regress-crbug-171715.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2015 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // Flags: --expose-debug-as debug
6
7 function f() {
8 print(1);
9 print(2);
10 print(3);
11 }
12
13 var Debug = debug.Debug;
14 var exception = null;
15 var breaks = [];
16
17 function listener(event, exec_state, event_data, data) {
18 if (event != Debug.DebugEvent.Break) return;
19 try {
20 Debug.debuggerFlags().breakPointsActive.setValue(false);
21 breaks.push(exec_state.frame().sourceLineText().trimLeft());
22 exec_state.prepareStep(Debug.StepAction.StepIn);
23 } catch (e) {
24 exception = e;
25 }
26 }
27
28 Debug.setListener(listener);
29 Debug.setBreakPoint(f, 0, 0);
30
31 f();
32
33 Debug.setListener(null);
34 Debug.debuggerFlags().breakPointsActive.setValue(true);
35
36 assertNull(exception);
37 assertEquals(breaks, ["print(1);", "print(2);", "print(3);", "}",
38 "Debug.setListener(null);"]);
OLDNEW
« no previous file with comments | « test/mjsunit/regress/regress-5164.js ('k') | test/mjsunit/regress/regress-crbug-171715.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698