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

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

Issue 2637123002: Revert of [complier] Enable parallel eager inner function compilation with compiler dispatcher. (Closed)
Patch Set: Created 3 years, 11 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
1 // Copyright 2016 the V8 project authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Flags: --ignition-filter=f
6
5 var Debug = debug.Debug; 7 var Debug = debug.Debug;
6 8
7 var break_count = 0; 9 var break_count = 0;
8 10
9 function f() { 11 function f() {
10 debugger; 12 debugger;
11 } 13 }
12 14
13 function listener(event, exec_data) { 15 function listener(event, exec_data) {
14 if (event != Debug.DebugEvent.Break) return; 16 if (event != Debug.DebugEvent.Break) return;
15 break_count++; 17 break_count++;
16 } 18 }
17 19
18 f(); 20 f();
19 assertEquals(0, break_count); 21 assertEquals(0, break_count);
20 22
21 Debug.setListener(listener); 23 Debug.setListener(listener);
22 24
23 f(); 25 f();
24 assertEquals(1, break_count); 26 assertEquals(1, break_count);
25 27
26 Debug.setListener(null); 28 Debug.setListener(null);
27 29
28 f(); 30 f();
29 assertEquals(1, break_count); 31 assertEquals(1, break_count);
OLDNEW
« no previous file with comments | « test/debugger/debug/ignition/debug-step-prefix-bytecodes.js ('k') | test/mjsunit/ignition/stack-trace-source-position.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698