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
I noticed that flowgen converts class X implements I {} to class X mixins I {}, but it should actually keep it as the original, because that's how Flow expects the syntax to be.
mixin is still valid if we want to extend from multiple classes though (e.g. class X mixins C1, C2 {})
The text was updated successfully, but these errors were encountered:
I noticed that flowgen converts
class X implements I {}
toclass X mixins I {}
, but it should actually keep it as the original, because that's how Flow expects the syntax to be.mixin
is still valid if we want to extend from multiple classes though (e.g.class X mixins C1, C2 {}
)The text was updated successfully, but these errors were encountered: