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

Side by Side Diff: test/mjsunit/regress/regress-crbug-171715.js

Issue 13093003: Only copy with, block and catch scopes in DebugEvaluate. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 8 months 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 | Annotate | Revision Log
« no previous file with comments | « src/runtime.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 12 matching lines...) Expand all
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 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. 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 27
28 // Flags: --expose-debug-as debug 28 // Flags: --expose-debug-as debug
29 29
30 Debug = debug.Debug 30 Debug = debug.Debug
31 31
32 var error = null; 32 var error = null;
33 var array = ["a", "b", "c"]; 33 var test = 0;
34
35 function check_v(expected, exec_state, frame_id) {
36 assertEquals(expected, exec_state.frame(frame_id).evaluate('v').value());
37 }
34 38
35 function listener(event, exec_state, event_data, data) { 39 function listener(event, exec_state, event_data, data) {
36 try { 40 try {
37 if (event == Debug.DebugEvent.Break) { 41 if (event != Debug.DebugEvent.Break) return;
38 assertArrayEquals(array, 42 test++;
43 if (test == 1) {
44 check_v('inner0', exec_state, 0);
45 check_v('inner0', exec_state, 1);
46 check_v('outer', exec_state, 2);
47 assertArrayEquals(["a", "b", "c"],
39 exec_state.frame(0).evaluate('arguments').value()); 48 exec_state.frame(0).evaluate('arguments').value());
49 } else if (test == 2) {
50 check_v('inner1', exec_state, 0);
51 check_v('inner1', exec_state, 1);
52 check_v('outer', exec_state, 2);
53 assertArrayEquals(["a", "b", "c"],
54 exec_state.frame(0).evaluate('arguments').value());
55 } else {
56 assertEquals(3, test);
57 check_v('inner2', exec_state, 0);
58 check_v('inner1', exec_state, 1);
59 check_v('inner1', exec_state, 2);
60 check_v('outer', exec_state, 3);
61 assertArrayEquals(["x", "y", "z"],
62 exec_state.frame(0).evaluate('arguments').value());
63 assertArrayEquals(["a", "b", "c"],
64 exec_state.frame(1).evaluate('arguments').value());
40 } 65 }
41 } catch (e) { 66 } catch (e) {
42 error = e; 67 error = e;
43 } 68 }
44 }; 69 };
45 70
46 Debug.setListener(listener); 71 Debug.setListener(listener);
47 72
48 73 var v = 'outer';
49 function f(a, b) { 74 (function() { // Test 1 and 2
50 arguments; 75 var v = 'inner0';
51 debugger; // Arguments object is already materialized. 76 eval("debugger; var v = 'inner1'; debugger;");
52 } 77 assertEquals('inner1', v); // Overwritten by local eval.
53 78 })("a", "b", "c");
54 f.apply(this, array);
55 f("a", "b", "c");
56 assertNull(error); 79 assertNull(error);
57 80
58 function g(a, b) { 81 (function() { // Test 3
59 debugger; // Arguments object is not yet materialized. 82 var v = 'inner0'; // Local eval overwrites this value.
60 } 83 eval("var v = 'inner1'; " +
61 g.apply(this, array); 84 "(function() { var v = 'inner2'; debugger; })('x', 'y', 'z');");
62 g("a", "b", "c"); 85 assertEquals('inner1', v); // Overwritten by local eval.
86 })("a", "b", "c");
63 assertNull(error); 87 assertNull(error);
64
OLDNEW
« no previous file with comments | « src/runtime.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698