| OLD | NEW |
| 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 a.b.c(d, e):0:0 |
| 34 | 34 |
| OLD | NEW |