(table, length)
| 12 | const kV8MaxWasmTableSize = 10000000; |
| 13 | |
| 14 | function assertTableIsValid(table, length) { |
| 15 | assertSame(WebAssembly.Table.prototype, table.__proto__); |
| 16 | assertSame(WebAssembly.Table, table.constructor); |
| 17 | assertTrue(table instanceof Object); |
| 18 | assertTrue(table instanceof WebAssembly.Table); |
| 19 | assertEquals(length, table.length); |
| 20 | } |
| 21 | |
| 22 | (function TestConstructor() { |
| 23 | assertTrue(WebAssembly.Table instanceof Function); |
no test coverage detected
searching dependent graphs…