Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 Verify javascript outline | |
| 2 | |
| 3 | |
| 4 Running: testComputedProperty | |
| 5 Text: | |
| 6 a.b[c] = function() { }; | |
| 7 Outline: | |
| 8 | |
| 9 Running: testComputedPropertyInTheMiddle | |
| 10 Text: | |
| 11 a.b[c].d = function() { }; | |
| 12 Outline: | |
| 13 d():0:0 | |
| 14 | |
| 15 Running: testComputedPropertyForExpression | |
| 16 Text: | |
| 17 (a || b).c = function() { }; | |
| 18 Outline: | |
| 19 c():0:0 | |
| 20 | |
| 21 Running: testPropertyStringLiteral | |
| 22 Text: | |
| 23 var foo = { "bar": function() { }} | |
| 24 Outline: | |
| 25 "bar"():0:12 | |
|
dgozman
2017/03/24 23:07:30
Let's drop this and next one
lushnikov
2017/03/25 06:38:34
Done.
| |
| 26 | |
| 27 Running: testPropertyNumberLiteral | |
| 28 Text: | |
| 29 var foo = { 42: function() { }} | |
| 30 Outline: | |
| 31 42():0:12 | |
| 32 | |
| OLD | NEW |