org.scalajs.core.tools.linker.analyzer.Analysis.MethodSyntheticKind
A reflective proxy bridge to the appropriate target method.
A reflective proxy methodxyz dynamically calls some target method methodxyzR on this. R is boxed according to JVM boxing semantics, i.e.,
methodxyz
target
methodxyzR
this
R
Char
java.lang.Character
void
()
undefined
The basic shape is:
def method__xyz__(p1: T1, ..., pn: TN): any = { this.method__xyz__R(p1, ..., pn) }
A reflective proxy bridge to the appropriate target method.
A reflective proxy
methodxyz
dynamically calls sometarget
methodmethodxyzR
onthis
.R
is boxed according to JVM boxing semantics, i.e.,Char
is boxed injava.lang.Character
void
is followed by a reified()
, i.e.,undefined
The basic shape is: