Skip to content
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

Constructor reform #2108

Open
arv opened this issue Apr 23, 2016 · 0 comments
Open

Constructor reform #2108

arv opened this issue Apr 23, 2016 · 0 comments

Comments

@arv
Copy link
Collaborator

arv commented Apr 23, 2016

Handle return in constructors and derived classes.

#2107 (comment)

We need to change how we do constructors to handle the following case:

class B {
  constructor() {
    return new RegExp();
  }
}

class C extends B {
  constructor() {
    super();
    this.x = 'a';
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant