()
| 41 | |
| 42 | // Test different forms of constructor calls, all equivalent. |
| 43 | function TestNew() { |
| 44 | for (var i = 0; i < 2; ++i) { |
| 45 | for (var j = 0; j < 5; ++j) { |
| 46 | symbols.push(%CreatePrivateSymbol("66")) |
| 47 | symbols.push(Object(%CreatePrivateSymbol("66")).valueOf()) |
| 48 | } |
| 49 | gc() // Promote existing symbols and then allocate some more. |
| 50 | } |
| 51 | } |
| 52 | TestNew() |
| 53 | |
| 54 |
no test coverage detected