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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/sources/outline-javascript-4-expected.txt

Issue 2771623003: DevTools: add tests to fixate javascript outline behavior (Closed)
Patch Set: 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
« no previous file with comments | « third_party/WebKit/LayoutTests/inspector/sources/outline-javascript-4.html ('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
(Empty)
1 Verify javascript outline
2
3
4 Running: testAsyncFunction
5 Text:
6 async function foo() { }
7 Outline:
8 foo():0:15
9
10 Running: testGeneratorFunction
11 Text:
12 function* foo() { }
13 Outline:
14
15 Running: testMismatchBrackets
16 Text:
17
18 function foo(a, b) {
19 if (a > b) {
20 return a;
21 }
22
23 function bar(eee) {
24 foo(eee, 2 * eee);
25 }
26
27 Outline:
28 foo(a, b):1:9
29 bar(eee):6:9
30
31 Running: testSyntaxError
32 Text:
33
34 function notAGenerator(a, b) {
35 yield 10;
36 }
37 Outline:
38 notAGenerator(a, b):1:9
39
OLDNEW
« no previous file with comments | « third_party/WebKit/LayoutTests/inspector/sources/outline-javascript-4.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698