blob: 10b63af3e33feba396f4466098025bef688fd213 [file] [log] [blame]
Ben Murdochc5610432016-08-08 18:44:38 +01001// 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: --expose-debug-as debug
6
7// Test that hidden scopes are correctly walked in the scope chain.
8
9var Debug = debug.Debug;
10var exception = null;
11var delegate = null;
12var done = false;
13
14function listener(event, exec_state, event_data, data) {
15 if (event != Debug.DebugEvent.Break) return;
16 try {
17 assertEquals([ debug.ScopeType.Block,
18 debug.ScopeType.Script,
19 debug.ScopeType.Global ],
20 exec_state.frame(0).allScopes().map(s => s.scopeType()));
21 done = true;
22 } catch (e) {
23 exception = e;
24 }
25}
26
27Debug.setListener(listener);
28
29for(let a = 0; a < 3; a++) {
30 debugger;
31 eval(); // Force context-allocation of everything.
32}
33
34Debug.setListener(null);
35assertNull(exception);
36assertTrue(done);