(clazz)
| 292 | }; |
| 293 | |
| 294 | async function testClass (clazz) { |
| 295 | testStaticValue(clazz); |
| 296 | testStaticAccessor(clazz); |
| 297 | testStaticMethod(clazz); |
| 298 | |
| 299 | testStaticEnumerables(clazz); |
| 300 | await testFinalize(clazz); |
| 301 | } |
| 302 | |
| 303 | // `Test` is needed for accessing exposed symbols |
| 304 | testObj(new Test(), Test); |