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
Iterate over all Declarations and replace static computed keys with just the static key (as long as the key is a string, not a number this.11 is invalid.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
There are remaining computed keys that could be converted to static keys.
In this example (
this[Qa]
=>this.Qa
,b.propertyBackedAttributes_[c]
=>b.propertyBackedAttributes_.c
,this[d]
=>this.d
)Describe the solution you'd like
Iterate over all Declarations and replace static computed keys with just the static key (as long as the key is a string, not a number
this.11
is invalid.The text was updated successfully, but these errors were encountered: