OLD | NEW |
(Empty) | |
| 1 Verify javascript outline |
| 2 |
| 3 |
| 4 Running: testSimpleFunction |
| 5 Text: |
| 6 function foo(a, b, c) {} |
| 7 Outline: |
| 8 foo(a, b, c):0:9 |
| 9 |
| 10 Running: testSpreadOperator |
| 11 Text: |
| 12 function foo(a, b, ...c) {} |
| 13 Outline: |
| 14 foo(a, b, ...c):0:9 |
| 15 |
| 16 Running: testVariableDeclaration |
| 17 Text: |
| 18 var a = function(a,b) { } |
| 19 Outline: |
| 20 a(a, b):0:8 |
| 21 |
| 22 Running: testMultipleVariableDeclaration |
| 23 Text: |
| 24 var a = function(a,b) { }, b = function(c,d) { } |
| 25 Outline: |
| 26 a(a, b):0:8 |
| 27 b(c, d):0:31 |
| 28 |
| 29 Running: testObjectProperty |
| 30 Text: |
| 31 a.b.c = function(d, e) { } |
| 32 Outline: |
| 33 c(d, e):0:8 |
| 34 |
OLD | NEW |