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 exception Attempted to access private element on non-instance occurs when the initializer for @reactive() performs context.access.get(this). This can be fixed once babel has been updated to support context.addInitializer in class fields, see tc39/proposal-decorators#508 (comment)
Until then, either the method or the field can't be private.
The text was updated successfully, but these errors were encountered:
To reproduce:
The exception
Attempted to access private element on non-instance
occurs when the initializer for@reactive()
performscontext.access.get(this)
. This can be fixed once babel has been updated to supportcontext.addInitializer
in class fields, see tc39/proposal-decorators#508 (comment)Until then, either the method or the field can't be private.
The text was updated successfully, but these errors were encountered: