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

Side by Side Diff: test/debugger/debug/ignition/debug-scope-on-return.js

Issue 2476303003: Revert of [debugger] Migrate more debugger tests to inspector (Closed)
Patch Set: 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
(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
6 // Check that the we are still in function context when we break on return.
7
8 var Debug = debug.Debug;
9
10 function listener(event, exec_state, event_data, data) {
11 if (event == Debug.DebugEvent.Break) {
12 // Access scope details to check the context is correct.
13 var scope_count = exec_state.frame().scopeCount();
14 // Do steps until we reach the global scope again.
15 exec_state.prepareStep(Debug.StepAction.StepIn);
16 }
17 }
18
19 Debug.setListener(listener);
20
21 function f() {
22 debugger;
23
24 L: with ({x:12}) {
25 break L;
26 }
27
28 return;
29 }
30 f();
OLDNEW
« no previous file with comments | « test/debugger/debug/ignition/debug-break-on-stack.js ('k') | test/debugger/debug/ignition/debugger-statement.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698