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