Details
-
Enhancement
-
Resolution: Fixed
-
P2
-
8
-
None
-
b106
-
generic
-
generic
Description
After discussing the implementation of JDK-8023373, it emerged that team members would prefer to have the pattern of calling super methods through a separate adapter. That is, instead of, using this syntax to invoke a super method:
w.super$write(...)
rather use this:
var w_super = Java.super(w)
...
w_super.write(...)
w.super$write(...)
rather use this:
var w_super = Java.super(w)
...
w_super.write(...)
Attachments
Issue Links
- relates to
-
JDK-8023373 Java adapters don't have facility to call super methods
- Closed