(proto, constructTrap)
| 286 | } |
| 287 | |
| 288 | function TestConstruct(proto, constructTrap) { |
| 289 | TestConstruct2(proto, constructTrap, handlerWithPrototype) |
| 290 | TestConstruct2(proto, constructTrap, handlerSansPrototype) |
| 291 | } |
| 292 | |
| 293 | function TestConstruct2(proto, constructTrap, handler) { |
| 294 | var f = new Proxy(function(){}, {construct: constructTrap}) |
no test coverage detected