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

Support superclass constructors in instantiators #3

Description

@kevinpet

Instantiators can't handle something like this:

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

class Child {
  Child(int x) {
    super(x);
  }
}

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type
No fields configured for issues without a type.

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions