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

Side by Side Diff: test/inspector/debugger/step-into-expected.txt

Issue 2710903003: [inspector] added master test for break locations (Closed)
Patch Set: addressed comments Created 3 years, 9 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
OLDNEW
1 Checks possible break locations. 1 Checks possible break locations.
2 2
3 Running test: testEval 3 Running test: testEval
4 break at: 4 break at:
5 function testEval() { 5 function testEval() {
6 #eval('// comment only'); 6 #eval('// comment only');
7 eval('// comment only\n'); 7 eval('// comment only\n');
8 8
9 break at: 9 break at:
10 // comment onl#y 10 // comment onl#y
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 111
112 break at: 112 break at:
113 emptyFunction(); 113 emptyFunction();
114 #} 114 #}
115 115
116 116
117 117
118 Running test: testCallArguments 118 Running test: testCallArguments
119 break at: 119 break at:
120 function testCallArguments() { 120 function testCallArguments() {
121 #twoArguments(emptyFunction(), emptyFunction()); 121 #twoArguments(emptyFunction(), emptyFunction());
122 } 122 }
123 123
124 break at: 124 break at:
125 125
126 function emptyFunction() {#} 126 function emptyFunction() {#}
127 127
128 128
129 break at: 129 break at:
130 function testCallArguments() { 130 function testCallArguments() {
131 twoArguments(emptyFunction(), #emptyFunction()); 131 twoArguments(emptyFunction(), #emptyFunction());
132 } 132 }
133 133
134 break at: 134 break at:
135 135
136 function emptyFunction() {#} 136 function emptyFunction() {#}
137 137
138 138
139 break at: 139 break at:
140 function testCallArguments() { 140 function testCallArguments() {
141 #twoArguments(emptyFunction(), emptyFunction()); 141 #twoArguments(emptyFunction(), emptyFunction());
142 } 142 }
143 143
144 break at: 144 break at:
145 function twoArguments(a1, a2) { 145 function twoArguments(a1, a2) {
146 #} 146 #}
147 147
148 148
149 break at: 149 break at:
150 twoArguments(emptyFunction(), emptyFunction()); 150 twoArguments(emptyFunction(), emptyFunction());
151 #} 151 #}
152 152
153 153
154 154
155 Running test: testNested 155 Running test: testNested
156 break at: 156 break at:
157 } 157 }
158 #nested1(); 158 #nested1();
159 } 159 }
160 160
(...skipping 678 matching lines...) Expand 10 before | Expand all | Expand 10 after
839 } 839 }
840 840
841 break at: 841 break at:
842 return 42; 842 return 42;
843 #} 843 #}
844 844
845 845
846 break at: 846 break at:
847 async function asyncBoo() { 847 async function asyncBoo() {
848 await Promise.#resolve(); 848 await Promise.#resolve();
849 849 }
850 850
851 break at: 851 break at:
852 async function asyncBoo() { 852 async function asyncBoo() {
853 #await Promise.resolve(); 853 #await Promise.resolve();
854 }
854 855
855
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698