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

Side by Side Diff: test/mjsunit/harmony/debug-function-scopes.js

Issue 726643002: harmony-scoping: Implement debugger support for script scope. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Nit + rebased Created 6 years, 1 month 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
« no previous file with comments | « test/mjsunit/harmony/debug-blockscopes.js ('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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 --harmony-scoping 28 // Flags: --expose-debug-as debug --harmony-scoping
29 29
30 "use strict"; 30 "use strict";
31 let top_level_let = 255;
31 32
32 // Get the Debug object exposed from the debug context global object. 33 // Get the Debug object exposed from the debug context global object.
33 var Debug = debug.Debug; 34 var Debug = debug.Debug;
34 35
35 function CheckScope(scope_mirror, scope_expectations, expected_scope_type) { 36 function CheckScope(scope_mirror, scope_expectations, expected_scope_type) {
36 assertEquals(expected_scope_type, scope_mirror.scopeType()); 37 assertEquals(expected_scope_type, scope_mirror.scopeType());
37 38
38 var scope_object = scope_mirror.scopeObject().value(); 39 var scope_object = scope_mirror.scopeObject().value();
39 40
40 for (let name in scope_expectations) { 41 for (let name in scope_expectations) {
41 let actual = scope_object[name]; 42 let actual = scope_object[name];
42 let expected = scope_expectations[name]; 43 let expected = scope_expectations[name];
43 assertEquals(expected, actual); 44 assertEquals(expected, actual);
44 } 45 }
45 } 46 }
46 47
47 // A copy of the scope types from mirror-debugger.js. 48 // A copy of the scope types from mirror-debugger.js.
48 var ScopeType = { Global: 0, 49 var ScopeType = { Global: 0,
49 Local: 1, 50 Local: 1,
50 With: 2, 51 With: 2,
51 Closure: 3, 52 Closure: 3,
52 Catch: 4, 53 Catch: 4,
53 Block: 5 }; 54 Block: 5,
55 Script: 6};
54 56
55 var f1 = (function F1(x) { 57 var f1 = (function F1(x) {
56 function F2(y) { 58 function F2(y) {
57 var z = x + y; 59 var z = x + y;
58 { 60 {
59 var w = 5; 61 var w = 5;
60 var v = "Capybara"; 62 var v = "Capybara";
61 var F3 = function(a, b) { 63 var F3 = function(a, b) {
62 function F4(p) { 64 function F4(p) {
63 return p + a + b + z + w + v.length; 65 return p + a + b + z + w + v.length;
64 } 66 }
65 return F4; 67 return F4;
66 } 68 }
67 return F3(4, 5); 69 return F3(4, 5);
68 } 70 }
69 } 71 }
70 return F2(17); 72 return F2(17);
71 })(5); 73 })(5);
72 74
73 var mirror = Debug.MakeMirror(f1); 75 var mirror = Debug.MakeMirror(f1);
74 76
75 assertEquals(4, mirror.scopeCount()); 77 assertEquals(5, mirror.scopeCount());
76 78
77 CheckScope(mirror.scope(0), { a: 4, b: 5 }, ScopeType.Closure); 79 CheckScope(mirror.scope(0), { a: 4, b: 5 }, ScopeType.Closure);
78 CheckScope(mirror.scope(1), { z: 22, w: 5, v: "Capybara" }, ScopeType.Closure); 80 CheckScope(mirror.scope(1), { z: 22, w: 5, v: "Capybara" }, ScopeType.Closure);
79 CheckScope(mirror.scope(2), { x: 5 }, ScopeType.Closure); 81 CheckScope(mirror.scope(2), { x: 5 }, ScopeType.Closure);
80 CheckScope(mirror.scope(3), {}, ScopeType.Global); 82 CheckScope(mirror.scope(3), { top_level_let: 255 }, ScopeType.Script);
83 CheckScope(mirror.scope(4), {}, ScopeType.Global);
81 84
82 var f2 = (function() { 85 var f2 = (function() {
83 var v1 = 3; 86 var v1 = 3;
84 var v2 = 4; 87 var v2 = 4;
85 let l0 = 0; 88 let l0 = 0;
86 { 89 {
87 var v3 = 5; 90 var v3 = 5;
88 let l1 = 6; 91 let l1 = 6;
89 let l2 = 7; 92 let l2 = 7;
90 { 93 {
91 var v4 = 8; 94 var v4 = 8;
92 let l3 = 9; 95 let l3 = 9;
93 { 96 {
94 var v5 = "Cat"; 97 var v5 = "Cat";
95 let l4 = 11; 98 let l4 = 11;
96 var v6 = l4; 99 var v6 = l4;
97 return function() { 100 return function() {
98 return l0 + v1 + v3 + l2 + l3 + v6; 101 return l0 + v1 + v3 + l2 + l3 + v6;
99 }; 102 };
100 } 103 }
101 } 104 }
102 } 105 }
103 })(); 106 })();
104 107
105 var mirror = Debug.MakeMirror(f2); 108 var mirror = Debug.MakeMirror(f2);
106 109
107 assertEquals(5, mirror.scopeCount()); 110 assertEquals(6, mirror.scopeCount());
108 111
109 // Implementation artifact: l4 isn't used in closure, but still it is saved. 112 // Implementation artifact: l4 isn't used in closure, but still it is saved.
110 CheckScope(mirror.scope(0), { l4: 11 }, ScopeType.Block); 113 CheckScope(mirror.scope(0), { l4: 11 }, ScopeType.Block);
111 114
112 CheckScope(mirror.scope(1), { l3: 9 }, ScopeType.Block); 115 CheckScope(mirror.scope(1), { l3: 9 }, ScopeType.Block);
113 CheckScope(mirror.scope(2), { l1: 6, l2: 7 }, ScopeType.Block); 116 CheckScope(mirror.scope(2), { l1: 6, l2: 7 }, ScopeType.Block);
114 CheckScope(mirror.scope(3), { v1:3, l0: 0, v3: 5, v6: 11 }, ScopeType.Closure); 117 CheckScope(mirror.scope(3), { v1:3, l0: 0, v3: 5, v6: 11 }, ScopeType.Closure);
115 CheckScope(mirror.scope(4), {}, ScopeType.Global); 118 CheckScope(mirror.scope(4), { top_level_let: 255 }, ScopeType.Script);
119 CheckScope(mirror.scope(5), {}, ScopeType.Global);
OLDNEW
« no previous file with comments | « test/mjsunit/harmony/debug-blockscopes.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698