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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/sources/outline-javascript-2-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
OLDNEW
(Empty)
1 Verify javascript outline
2
3
4 Running: testNamedFunctionVariableAssignment
5 Text:
6 var a = function foo(...bar) { }
7 Outline:
8 foo(...bar):0:17
9
10 Running: testArrowFunction
11 Text:
12 var a = x => x + 2
13 Outline:
14
15 Running: testArrowFunctionWithMultipleArguments
16 Text:
17 var a = (x, y) => x + y
18 Outline:
19
20 Running: testInnerFunctions
21 Text:
22 function foo(){ function bar() {} function baz() { }}
23 Outline:
24 foo():0:9
25 bar():0:25
26 baz():0:43
27
28 Running: testObjectProperties
29 Text:
30 x = { run: function() { }, get count() { }, set count(value) { }}
31 Outline:
32 run():0:11
33 get count():0:31
34 set count(value):0:48
35
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698