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
With namespaces, we do not allow a member to be exported for extensions without the namespace itself being tagged. However, we do not enforce the same rule for classes.
Example:
exportclassFoo{// should have error similar to namespace, but no error is present/* * @extensions * @public */publicstaticbar(){// no error ok, method is properly tagged
...
}}
The text was updated successfully, but these errors were encountered:
With namespaces, we do not allow a member to be exported for extensions without the namespace itself being tagged. However, we do not enforce the same rule for classes.
Example:
The text was updated successfully, but these errors were encountered: