[webidl] Allow constructor<ClassType> as a type accepted by functions. (#101)

From personal email, which I never got around to filing here :)

Something like:
```
[Constructor]
callback interface Painter {
  static sequence<DOMString> inputProperties;
  void paint(Blah blah);
};

interface PaintWorkletGlobalScope … {
  void registerPaint(DOMString name, constructor<Painter> paintCtor);
};
```

---
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/101

Received on Thursday, 24 March 2016 18:36:28 UTC