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

Side by Side Diff: test/debugger/debug/es6/regress/regress-3280.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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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: --expose-debug-as debug
6 5
7 var Debug = debug.Debug; 6 var Debug = debug.Debug;
8 7
9 var listener_called; 8 var listener_called;
10 9
11 function listener(event, exec_state, event_data, data) { 10 function listener(event, exec_state, event_data, data) {
12 if (event == Debug.DebugEvent.Break) { 11 if (event == Debug.DebugEvent.Break) {
13 listener_called = true; 12 listener_called = true;
14 exec_state.frame().allScopes(); 13 exec_state.frame().allScopes();
15 } 14 }
16 } 15 }
17 16
18 Debug.setListener(listener); 17 Debug.setListener(listener);
19 18
20 function *generator_local_2(a) { 19 function *generator_local_2(a) {
21 debugger; 20 debugger;
22 } 21 }
23 generator_local_2(1).next(); 22 generator_local_2(1).next();
24 23
25 assertTrue(listener_called, "listener not called"); 24 assertTrue(listener_called, "listener not called");
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698