Re: [heycam/webidl] Define that interface objects are constructors (#698)

And also whether a proxy for a DOM interface object ends up with a construct trap being called.  So simple testcase:
```
<script>
  var p = new Proxy(Node, { construct: () => console.log("constructing") });
  new p()
</script>
```


-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/heycam/webidl/issues/698#issuecomment-476692787

Received on Tuesday, 26 March 2019 15:08:38 UTC