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
As we can see, the following examples are valid PatternMatchingMemberExpression:
this[expr]
super.prop[expr]
import.meta[expr]
However, this production does not cover super [ Expression[+In, ?Yield, ?Await] ], should we also include it?
If yes we can replace super . IdentifierName by the SuperProperty production, which already covers super[expr].
The text was updated successfully, but these errors were encountered:
Here is the current
PatternMatchingMemberExpression
production:As we can see, the following examples are valid
PatternMatchingMemberExpression
:this[expr]
super.prop[expr]
import.meta[expr]
However, this production does not cover
super [ Expression[+In, ?Yield, ?Await] ]
, should we also include it?If yes we can replace
super . IdentifierName
by theSuperProperty
production, which already coverssuper[expr]
.The text was updated successfully, but these errors were encountered: