-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
String constructor with byte array #530
Comments
I am trying to fix this, but I counter an issue, the corresponding output could be something like:
And I don't know how to construct a MethodInfo of the String(byte[]) constructor if it is not found in |
Looks like you need to implement it youself. Add to public static MethodInfo externalMth(ClassInfo declaredCls, String name, List<ArgType> args, ArgType retType) { |
Seems that it would be better to begin from constant concatenations like String value = "a" + "b"; sometimes String value = "ab"; |
I guess this is a different case, since constants are usually |
As deduced from #529, there is also a potential to make String constructor beautiful.
The text was updated successfully, but these errors were encountered: