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

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

Issue 2770123002: DevTools: produce javascript outline for javascript classess (Closed)
Patch Set: address 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 Verify javascript outline 1 Verify javascript outline
2 2
3 3
4 Running: testSimpleFunction 4 Running: testSimpleFunction
5 Text: 5 Text:
6 function foo(a, b, c) {} 6 function foo(a, b, c) {}
7 Outline: 7 Outline:
8 foo(a, b, c):0:9 8 foo(a, b, c):0:9
9 9
10 Running: testSpreadOperator 10 Running: testSpreadOperator
11 Text: 11 Text:
12 function foo(a, b, ...c) {} 12 function foo(a, b, ...c) {}
13 Outline: 13 Outline:
14 foo(a, b, ...c):0:9 14 foo(a, b, ...c):0:9
15 15
16 Running: testVariableDeclaration 16 Running: testVariableDeclaration
17 Text: 17 Text:
18 var a = function(a,b) { } 18 var a = function(a,b) { }
19 Outline: 19 Outline:
20 a(a, b):0:8 20 a(a, b):0:4
21 21
22 Running: testMultipleVariableDeclaration 22 Running: testMultipleVariableDeclaration
23 Text: 23 Text:
24 var a = function(a,b) { }, b = function(c,d) { } 24 var a = function(a,b) { }, b = function(c,d) { }
25 Outline: 25 Outline:
26 a(a, b):0:8 26 a(a, b):0:4
27 b(c, d):0:31 27 b(c, d):0:27
28 28
29 Running: testObjectProperty 29 Running: testObjectProperty
30 Text: 30 Text:
31 a.b.c = function(d, e) { } 31 a.b.c = function(d, e) { }
32 Outline: 32 Outline:
33 c(d, e):0:8 33 c(d, e):0:0
34 34
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698