Skip to content

Support WebIDL inheritence #249

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
1 task
fitzgen opened this issue Jun 8, 2018 · 1 comment
Closed
1 task

Support WebIDL inheritence #249

fitzgen opened this issue Jun 8, 2018 · 1 comment
Labels
frontend:webidl Issues related to the WebIDL frontend to wasm-bindgen help wanted We could use some help fixing this issue!

Comments

@fitzgen
Copy link
Member

fitzgen commented Jun 8, 2018

https://heycam.github.io/webidl/#dfn-inherit

Example:

interface A {
  void f();
  void g();
};

interface B : A {
  void f();
  void g(DOMString x);
};

Blockers:

@fitzgen fitzgen added help wanted We could use some help fixing this issue! frontend:webidl Issues related to the WebIDL frontend to wasm-bindgen labels Jun 8, 2018
@alexcrichton
Copy link
Contributor

Done in #640!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
frontend:webidl Issues related to the WebIDL frontend to wasm-bindgen help wanted We could use some help fixing this issue!
Projects
None yet
Development

No branches or pull requests

2 participants