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

Side by Side Diff: test/mjsunit/ignition/debugger-statement.js

Issue 1667073002: [interpreter, debugger] implement debugger statement. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@sourcepositiontable
Patch Set: Created 4 years, 10 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 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: --ignition --ignition-filter=f --expose-debug-as debug
Michael Starzinger 2016/02/04 11:45:38 As discussed offline: This will unleash the full f
Yang 2016/02/04 13:47:06 Done.
6
7 var Debug = debug.Debug;
8
9 var break_count = 0;
10
11 function f() {
12 debugger;
13 }
14
15 function listener(event, exec_data) {
16 if (event != Debug.DebugEvent.Break) return;
17 break_count++;
18 }
19
20 f();
21 assertEquals(0, break_count);
22
23 Debug.setListener(listener);
24
25 f();
26 assertEquals(1, break_count);
27
28 Debug.setListener(null);
29
30 f();
31 assertEquals(1, break_count);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698