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

Side by Side Diff: test/mjsunit/debug-evaluate-closure.js

Issue 19569003: Do not materialize context-allocated values for debug-evaluate. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: improved test Created 7 years, 5 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/scopes.cc ('k') | test/mjsunit/regress/regress-crbug-259300.js » ('j') | 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 10 matching lines...) Expand all
21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
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 --allow-natives-syntax 28 // Flags: --expose-debug-as debug --allow-natives-syntax
29 29
30 Debug = debug.Debug; 30 Debug = debug.Debug;
31 var listened = false;
31 32
32 function listener(event, exec_state, event_data, data) { 33 function listener(event, exec_state, event_data, data) {
33 if (event != Debug.DebugEvent.Break) return; 34 if (event != Debug.DebugEvent.Break) return;
34 try { 35 try {
35 assertEquals("foo", exec_state.frame(0).evaluate("bar").value()); 36 assertEquals("goo", exec_state.frame(0).evaluate("goo").value());
37 exec_state.frame(0).evaluate("goo = 'goo foo'");
38 assertEquals("bar return", exec_state.frame(0).evaluate("bar()").value());
39 assertEquals("inner bar", exec_state.frame(0).evaluate("inner").value());
40 assertEquals("outer bar", exec_state.frame(0).evaluate("outer").value());
41 assertEquals("baz inner", exec_state.frame(0).evaluate("baz").value());
42 assertEquals("baz outer", exec_state.frame(1).evaluate("baz").value());
43 exec_state.frame(0).evaluate("w = 'w foo'");
44 exec_state.frame(0).evaluate("inner = 'inner foo'");
45 exec_state.frame(0).evaluate("outer = 'outer foo'");
46 exec_state.frame(0).evaluate("baz = 'baz inner foo'");
47 exec_state.frame(1).evaluate("baz = 'baz outer foo'");
48 listened = true;
36 } catch (e) { 49 } catch (e) {
37 exception = e; 50 print(e);
38 }; 51 print(e.stack);
39 listened++; 52 }
40 };
41
42 var exception = null;
43 var listened = 0;
44
45 var f = function() {
46 var bar = "foo";
47 var baz = bar; // Break point should be here.
48 return bar;
49 } 53 }
50 54
51 var g = function() { 55 Debug.setListener(listener);
52 var bar = "foo"; 56
53 var baz = bar; // Break point should be here. 57 var outer = "outer";
54 return bar; 58 var baz = "baz outer";
59
60 function foo() {
61 var inner = "inner";
62 var baz = "baz inner";
63 var goo = "goo";
64 var withw = { w: "w" };
65 var withv = { v: "v" };
66
67 with (withv) {
68 var bar = function bar() {
69 assertEquals("goo foo", goo);
70 inner = "inner bar";
71 outer = "outer bar";
72 v = "v bar";
73 return "bar return";
74 };
75 }
76
77 with (withw) {
78 debugger;
79 }
80
81 assertEquals("inner foo", inner);
82 assertEquals("baz inner foo", baz);
83 assertEquals("w foo", withw.w);
84 assertEquals("v bar", withv.v);
55 } 85 }
56 86
57 f(); 87 foo();
58 f(); 88 assertEquals("outer foo", outer);
59 g(); 89 assertEquals("baz outer foo", baz);
60 g(); 90 assertTrue(listened);
61 91 Debug.setListener(null);
62 // Mark with builtin.
63 %OptimizeFunctionOnNextCall(f);
64 if (%IsParallelRecompilationSupported()) {
65 %OptimizeFunctionOnNextCall(g, "parallel");
66 }
67
68 // Activate debugger.
69 Debug.setListener(listener);
70
71 // Set break point.
72 Debug.setBreakPoint(f, 2, 0);
73 Debug.setBreakPoint(g, 2, 0);
74
75 // Trigger break point.
76 f();
77 g();
78
79 // Assert that break point is set at expected location.
80 assertTrue(Debug.showBreakPoints(f).indexOf("[B0]var baz = bar;") > 0);
81 assertTrue(Debug.showBreakPoints(g).indexOf("[B0]var baz = bar;") > 0);
82
83 assertEquals(2, listened);
84 assertNull(exception);
OLDNEW
« no previous file with comments | « src/scopes.cc ('k') | test/mjsunit/regress/regress-crbug-259300.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698