OLD | NEW |
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 |
OLD | NEW |