-
-
Notifications
You must be signed in to change notification settings - Fork 140
Closed
Description
In the android runtime:
if (curve instanceof android.view.animation.Interpolator)
was returning false for instances of android.view.animation.PathInterpolator
.
The Interpolator is a java interface that is implemented by the PathInterpolator java class.
Is there a better way to handle this?
Is instanceof
working when checking if JavaScript objects implement a java interface?
If it is not implemented, Symbol.hasInstance may be helpful.