This repository was archived by the owner on Feb 22, 2018. It is now read-only.
This repository was archived by the owner on Feb 22, 2018. It is now read-only.
Generate code for recursive generic definitions #253
Closed
Description
We currently break on code of the following form:
class ElementInjector extends TreeNode<ElementInjector> {
...
}
we generate:
class ElementInjector extends TreeNode$(ElementInjector) {
which generates reference error on ElementInjector
.
(edit by @jmesserly) a lot of discussion below is obsolete, see my recent comment for proposed solution.