blob: 8e9f8c157a50504f769054aa711e4a172af30c4e [file] [log] [blame]
Ben Murdochda12d292016-06-02 14:46:10 +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 --allow-natives-syntax
6
7Debug = debug.Debug
8
9var exception = null;
10
11function f() {
12 let a = 0;
13 function g() {
14 let a = 1;
15 {
16 let a = 2;
17 debugger; // Breakpoint.
18 if (a !== 3) {
19 // We cannot change stack locals in optimized frames.
20 assertEquals(2, a);
21 assertOptimized(g);
22 }
23 }
24 assertEquals(1, a);
25 }
26 g.call(1);
27 if (a !== 4) {
28 // We cannot change stack locals in optimized frames.
29 assertEquals(0, a);
30 assertOptimized(f);
31 }
32}
33
34
35function listener(event, exec_state, event_data, data) {
36 if (event != Debug.DebugEvent.Break) return;
37 try {
38 exec_state.frame(0).evaluate("a = 3");
39 exec_state.frame(1).evaluate("a = 4");
40 assertThrows(() => exec_state.frame(0).evaluate("this = 2"));
41 } catch (e) {
42 exception = e;
43 print("Caught something. " + e + " " + e.stack);
44 };
45};
46
47Debug.setListener(listener);
48
49f();
50
51Debug.setListener(null);
52assertNull(exception);