U75957
07/16/2019, 2:16 PMexternal interface A {
fun foo(p1: Any)
}
fun main() {
A::foo.name
}
produce such js code:
getCallableRef('foo', function ($receiver, p1) {
return $receiver.foo(p1), Unit;
}).callableName;
It looks like a lot of excess. I expect just 'foo'
.PHondogo
07/16/2019, 3:07 PManton.bannykh
07/17/2019, 11:24 AMU75957
07/17/2019, 3:50 PM