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
{{ message }}
This repository was archived by the owner on Feb 22, 2018. It is now read-only.
Methods on String, int, double, bool, num, and (because it may be one of the previous) Object need to be generated differently.
E.g., instead of:
str.hashCode;
generate:
core.String.hashCode(str);
@jacob314@jmesserly We're handling List and other potentially native interfaces differently. Should we try to be consistent? For the most part, the above are sealed types, so it may make sense to be different.
Object is an interesting case. E.g., we could go:
core.Object.hashCode(obj);
and dispatch appropriately. I'll start working on this. Let me know if you're already looking at something similar.
The text was updated successfully, but these errors were encountered:
Methods on String, int, double, bool, num, and (because it may be one of the previous) Object need to be generated differently.
E.g., instead of:
generate:
@jacob314 @jmesserly We're handling List and other potentially native interfaces differently. Should we try to be consistent? For the most part, the above are sealed types, so it may make sense to be different.
Object is an interesting case. E.g., we could go:
and dispatch appropriately. I'll start working on this. Let me know if you're already looking at something similar.
The text was updated successfully, but these errors were encountered: