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

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

Issue 6357007: Make 'with' mark only variables occurring in the body as used. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge/build/ia32
Patch Set: Created 9 years, 11 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') | 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 2008 the V8 project authors. All rights reserved. 1 // Copyright 2008 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 16 matching lines...) Expand all
27 27
28 // Flags: --expose-debug-as debug 28 // Flags: --expose-debug-as debug
29 // Get the Debug object exposed from the debug context global object. 29 // Get the Debug object exposed from the debug context global object.
30 Debug = debug.Debug 30 Debug = debug.Debug
31 31
32 listenerComplete = false; 32 listenerComplete = false;
33 exception = false; 33 exception = false;
34 34
35 35
36 function checkFrame0(name, value) { 36 function checkFrame0(name, value) {
37 assertTrue(name == 'a' || name == 'b'); 37 assertTrue(name == 'a' || name == 'b', 'check name');
38 if (name == 'a') { 38 if (name == 'a') {
39 assertEquals(1, value); 39 assertEquals(1, value);
40 } 40 } else if (name == 'b') {
41 if (name == 'b') {
42 assertEquals(2, value); 41 assertEquals(2, value);
43 } 42 }
44 } 43 }
45 44
46 45
47 function checkFrame1(name, value) { 46 function checkFrame1(name, value) {
48 assertTrue(name == '.arguments' || name == 'a'); 47 assertTrue(name == '.arguments' || name == 'arguments' || name == 'a',
48 'check name');
49 if (name == 'a') { 49 if (name == 'a') {
50 assertEquals(3, value); 50 assertEquals(3, value);
51 } 51 }
52 } 52 }
53 53
54 54
55 function checkFrame2(name, value) { 55 function checkFrame2(name, value) {
56 assertTrue(name == '.arguments' || name == 'a' || 56 assertTrue(name == 'a' || name == 'b');
57 name == 'arguments' || name == 'b');
58 if (name == 'a') { 57 if (name == 'a') {
59 assertEquals(5, value); 58 assertEquals(5, value);
60 } 59 }
61 if (name == 'b') { 60 if (name == 'b') {
62 assertEquals(0, value); 61 assertEquals(0, value);
63 } 62 }
64 } 63 }
65 64
66 65
67 function listener(event, exec_state, event_data, data) { 66 function listener(event, exec_state, event_data, data) {
68 try { 67 try {
69 if (event == Debug.DebugEvent.Break) 68 if (event == Debug.DebugEvent.Break)
70 { 69 {
71 // Frame 0 has normal variables a and b. 70 // Frame 0 has normal variables a and b.
72 var frame0 = exec_state.frame(0); 71 var frame0 = exec_state.frame(0);
73 checkFrame0(frame0.localName(0), frame0.localValue(0).value()); 72 checkFrame0(frame0.localName(0), frame0.localValue(0).value());
74 checkFrame0(frame0.localName(1), frame0.localValue(1).value()); 73 checkFrame0(frame0.localName(1), frame0.localValue(1).value());
75 74
76 // Frame 1 has normal variable a (and the .arguments variable). 75 // Frame 1 has normal variables a and arguments (and the .arguments
76 // variable).
77 var frame1 = exec_state.frame(1); 77 var frame1 = exec_state.frame(1);
78 checkFrame1(frame1.localName(0), frame1.localValue(0).value()); 78 checkFrame1(frame1.localName(0), frame1.localValue(0).value());
79 checkFrame1(frame1.localName(1), frame1.localValue(1).value()); 79 checkFrame1(frame1.localName(1), frame1.localValue(1).value());
80 checkFrame1(frame1.localName(2), frame1.localValue(2).value());
80 81
81 // Frame 2 has normal variables a and b (and both the .arguments and 82 // Frame 2 has normal variables a and b.
82 // arguments variable).
83 var frame2 = exec_state.frame(2); 83 var frame2 = exec_state.frame(2);
84 checkFrame2(frame2.localName(0), frame2.localValue(0).value()); 84 checkFrame2(frame2.localName(0), frame2.localValue(0).value());
85 checkFrame2(frame2.localName(1), frame2.localValue(1).value()); 85 checkFrame2(frame2.localName(1), frame2.localValue(1).value());
86 checkFrame2(frame2.localName(2), frame2.localValue(2).value());
87 checkFrame2(frame2.localName(3), frame2.localValue(3).value());
88 86
89 // Evaluating a and b on frames 0, 1 and 2 produces 1, 2, 3, 4, 5 and 6. 87 // Evaluating a and b on frames 0, 1 and 2 produces 1, 2, 3, 4, 5 and 6.
90 assertEquals(1, exec_state.frame(0).evaluate('a').value()); 88 assertEquals(1, exec_state.frame(0).evaluate('a').value());
91 assertEquals(2, exec_state.frame(0).evaluate('b').value()); 89 assertEquals(2, exec_state.frame(0).evaluate('b').value());
92 assertEquals(3, exec_state.frame(1).evaluate('a').value()); 90 assertEquals(3, exec_state.frame(1).evaluate('a').value());
93 assertEquals(4, exec_state.frame(1).evaluate('b').value()); 91 assertEquals(4, exec_state.frame(1).evaluate('b').value());
94 assertEquals(5, exec_state.frame(2).evaluate('a').value()); 92 assertEquals(5, exec_state.frame(2).evaluate('a').value());
95 assertEquals(6, exec_state.frame(2).evaluate('b').value()); 93 assertEquals(6, exec_state.frame(2).evaluate('b').value());
96 94
97 // Indicate that all was processed. 95 // Indicate that all was processed.
(...skipping 25 matching lines...) Expand all
123 with ({b:6}) { 121 with ({b:6}) {
124 g(); 122 g();
125 } 123 }
126 }; 124 };
127 125
128 f(); 126 f();
129 127
130 // Make sure that the debug event listener vas invoked. 128 // Make sure that the debug event listener vas invoked.
131 assertTrue(listenerComplete); 129 assertTrue(listenerComplete);
132 assertFalse(exception, "exception in listener") 130 assertFalse(exception, "exception in listener")
OLDNEW
« no previous file with comments | « src/scopes.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698