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
The problem is that static_method_of binds to the type name given instead of the js_name defined for that type. static_method_of = default also doesn't work, because the type default is not known.
Describe the Bug
Take this code:
Expected Behavior
Generated index.js:
Actual Behavior
Additional Context
The problem is that
static_method_of
binds to the type name given instead of thejs_name
defined for that type.static_method_of = default
also doesn't work, because the typedefault
is not known.This produces the expected behavior:
but this double specification shouldn't be necessary.
The text was updated successfully, but these errors were encountered: