blob: 642e0c0682782f10ab696fe10d0d948033e0e817 [file] [log] [blame]
Steve Blocka7e24c12009-10-30 11:49:00 +00001// Copyright 2008 the V8 project authors. All rights reserved.
2// Redistribution and use in source and binary forms, with or without
3// modification, are permitted provided that the following conditions are
4// met:
5//
6// * Redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer.
8// * Redistributions in binary form must reproduce the above
9// copyright notice, this list of conditions and the following
10// disclaimer in the documentation and/or other materials provided
11// with the distribution.
12// * Neither the name of Google Inc. nor the names of its
13// contributors may be used to endorse or promote products derived
14// from this software without specific prior written permission.
15//
16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000028// Flags: --expose-debug-as debug --debug-eval-readonly-locals
Steve Blocka7e24c12009-10-30 11:49:00 +000029// Get the Debug object exposed from the debug context global object.
30Debug = debug.Debug
31
32listenerComplete = false;
33exception = false;
34
35
Ben Murdoch3fb3ca82011-12-02 17:19:32 +000036function h() {
37 var a = 1;
38 var b = 2;
Ben Murdochb8a8cc12014-11-26 15:28:44 +000039 var eval = 5; // Overriding eval should not break anything.
Ben Murdoch3fb3ca82011-12-02 17:19:32 +000040 debugger; // Breakpoint.
Ben Murdochb8a8cc12014-11-26 15:28:44 +000041 return a;
Ben Murdoch3fb3ca82011-12-02 17:19:32 +000042}
43
44function checkFrame0(frame) {
45 // Frame 0 (h) has normal variables a and b.
46 var count = frame.localCount();
Ben Murdochb8a8cc12014-11-26 15:28:44 +000047 assertEquals(3, count);
Ben Murdoch3fb3ca82011-12-02 17:19:32 +000048 for (var i = 0; i < count; ++i) {
49 var name = frame.localName(i);
50 var value = frame.localValue(i).value();
51 if (name == 'a') {
52 assertEquals(1, value);
Ben Murdochb8a8cc12014-11-26 15:28:44 +000053 } else if (name !='eval') {
Ben Murdoch3fb3ca82011-12-02 17:19:32 +000054 assertEquals('b', name);
55 assertEquals(2, value);
56 }
Steve Blocka7e24c12009-10-30 11:49:00 +000057 }
58}
59
60
Ben Murdoch3fb3ca82011-12-02 17:19:32 +000061function g() {
62 var a = 3;
63 eval("var b = 4;");
Ben Murdochb8a8cc12014-11-26 15:28:44 +000064 return h() + a;
Ben Murdoch3fb3ca82011-12-02 17:19:32 +000065}
66
67function checkFrame1(frame) {
68 // Frame 1 (g) has normal variable a (and arguments).
69 var count = frame.localCount();
70 assertEquals(2, count);
71 for (var i = 0; i < count; ++i) {
72 var name = frame.localName(i);
73 var value = frame.localValue(i).value();
74 if (name == 'a') {
75 assertEquals(3, value);
76 } else {
77 assertEquals('arguments', name);
78 }
Steve Blocka7e24c12009-10-30 11:49:00 +000079 }
80}
81
82
Ben Murdoch3fb3ca82011-12-02 17:19:32 +000083function f() {
84 var a = 5;
85 var b = 0;
86 with ({b:6}) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +000087 return g();
Steve Blocka7e24c12009-10-30 11:49:00 +000088 }
Ben Murdoch3fb3ca82011-12-02 17:19:32 +000089}
90
91function checkFrame2(frame) {
92 // Frame 2 (f) has normal variables a and b (and arguments).
93 var count = frame.localCount();
94 assertEquals(3, count);
95 for (var i = 0; i < count; ++i) {
96 var name = frame.localName(i);
97 var value = frame.localValue(i).value();
98 if (name == 'a') {
99 assertEquals(5, value);
100 } else if (name == 'b') {
101 assertEquals(0, value);
102 } else {
103 assertEquals('arguments', name);
104 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000105 }
106}
107
108
109function listener(event, exec_state, event_data, data) {
110 try {
111 if (event == Debug.DebugEvent.Break)
112 {
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000113 checkFrame0(exec_state.frame(0));
114 checkFrame1(exec_state.frame(1));
115 checkFrame2(exec_state.frame(2));
Steve Blocka7e24c12009-10-30 11:49:00 +0000116
117 // Evaluating a and b on frames 0, 1 and 2 produces 1, 2, 3, 4, 5 and 6.
118 assertEquals(1, exec_state.frame(0).evaluate('a').value());
119 assertEquals(2, exec_state.frame(0).evaluate('b').value());
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000120 assertEquals(5, exec_state.frame(0).evaluate('eval').value());
Steve Blocka7e24c12009-10-30 11:49:00 +0000121 assertEquals(3, exec_state.frame(1).evaluate('a').value());
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000122 // Reference error because g does not reference b.
123 assertThrows(() => exec_state.frame(1).evaluate('b'), ReferenceError);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000124 assertEquals("function",
125 typeof exec_state.frame(1).evaluate('eval').value());
Steve Blocka7e24c12009-10-30 11:49:00 +0000126 assertEquals(5, exec_state.frame(2).evaluate('a').value());
127 assertEquals(6, exec_state.frame(2).evaluate('b').value());
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000128 assertEquals("function",
129 typeof exec_state.frame(2).evaluate('eval').value());
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000130 // Assignments to local variables only have temporary effect.
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000131 assertEquals("foo",
132 exec_state.frame(0).evaluate('a = "foo"').value());
133 assertEquals("bar",
134 exec_state.frame(1).evaluate('a = "bar"').value());
Steve Blocka7e24c12009-10-30 11:49:00 +0000135 // Indicate that all was processed.
136 listenerComplete = true;
137 }
138 } catch (e) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000139 exception = e;
140 print("Caught something. " + e + " " + e.stack);
Steve Blocka7e24c12009-10-30 11:49:00 +0000141 };
142};
143
144// Add the debug event listener.
145Debug.setListener(listener);
146
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000147var f_result = f();
Steve Blocka7e24c12009-10-30 11:49:00 +0000148
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000149assertEquals(4, f_result);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000150
151// Make sure that the debug event listener was invoked.
Steve Blocka7e24c12009-10-30 11:49:00 +0000152assertFalse(exception, "exception in listener")
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000153assertTrue(listenerComplete);