You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
String.replace (as well as all overloads) are widely used and should be supported
Caused by: java.lang.IllegalStateException: No such method : java/lang/String.replace(Ljava/lang/CharSequence;Ljava/lang/CharSequence;)Ljava/lang/String;
I assume that a "native" transpilation is missing?
If you point me to how to do such "stubs" please point me to it and i will open a PR
Edit: I have seen that the stubs/translations are in runtime.js and the java natives in "classlib". Would it be correct to:
Copy the signatures from java.lang.String into TString and mark them native
Create an implementation is runtime.js
Is there any other stuff needed?
The text was updated successfully, but these errors were encountered:
String.replace
(as well as all overloads) are widely used and should be supportedCaused by: java.lang.IllegalStateException: No such method : java/lang/String.replace(Ljava/lang/CharSequence;Ljava/lang/CharSequence;)Ljava/lang/String;
I assume that a "native" transpilation is missing?
If you point me to how to do such "stubs" please point me to it and i will open a PR
Edit: I have seen that the stubs/translations are in runtime.js and the java natives in "classlib". Would it be correct to:
Is there any other stuff needed?
The text was updated successfully, but these errors were encountered: