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

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

Issue 2770123002: DevTools: produce javascript outline for javascript classess (Closed)
Patch Set: missing build files 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: testNamedFunctionVariableAssignment 4 Running: testNamedFunctionVariableAssignment
5 Text: 5 Text:
6 var a = function foo(...bar) { } 6 var a = function foo(...bar) { }
7 Outline: 7 Outline:
8 foo(...bar):0:17 8 a(...bar):0:4
9 9
10 Running: testArrowFunction 10 Running: testArrowFunction
11 Text: 11 Text:
12 var a = x => x + 2 12 var a = x => x + 2
13 Outline: 13 Outline:
14 a(x):0:4
14 15
15 Running: testArrowFunctionWithMultipleArguments 16 Running: testArrowFunctionWithMultipleArguments
16 Text: 17 Text:
17 var a = (x, y) => x + y 18 var a = (x, y) => x + y
18 Outline: 19 Outline:
20 a(x, y):0:4
19 21
20 Running: testInnerFunctions 22 Running: testInnerFunctions
21 Text: 23 Text:
22 function foo(){ function bar() {} function baz() { }} 24 function foo(){ function bar() {} function baz() { }}
23 Outline: 25 Outline:
24 foo():0:9 26 foo():0:9
25 bar():0:25 27 bar():0:25
26 baz():0:43 28 baz():0:43
27 29
28 Running: testObjectProperties 30 Running: testObjectProperties
29 Text: 31 Text:
30 x = { run: function() { }, get count() { }, set count(value) { }} 32 x = { run: function() { }, get count() { }, set count(value) { }}
31 Outline: 33 Outline:
32 run():0:11 34 run():0:6
33 get count():0:31 35 get count():0:31
34 set count(value):0:48 36 set count(value):0:48
35 37
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698