Skip to content
This repository has been archived by the owner on Jan 26, 2021. It is now read-only.

Support superclass constructors in instantiators #3

Open
kevinpet opened this issue Dec 21, 2012 · 0 comments
Open

Support superclass constructors in instantiators #3

kevinpet opened this issue Dec 21, 2012 · 0 comments
Assignees

Comments

@kevinpet
Copy link
Contributor

Instantiators can't handle something like this:

class Parent {
  int x;
  Parent(int x) {
    this.x = x;
  }
}

class Child {
  Child(int x) {
    super(x);
  }
}
@ghost ghost assigned kevinpet Dec 21, 2012
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Development

No branches or pull requests

1 participant