-
-
Notifications
You must be signed in to change notification settings - Fork 932
Closed
Labels
C-bugCategory - BugCategory - Bug
Description
pub enum SimpleAssignmentTarget<'a> {
AssignmentTargetIdentifier(Box<'a, IdentifierReference<'a>>) = 0,
TSAsExpression(Box<'a, TSAsExpression<'a>>) = 1,
TSSatisfiesExpression(Box<'a, TSSatisfiesExpression<'a>>) = 2,
TSNonNullExpression(Box<'a, TSNonNullExpression<'a>>) = 3,
TSTypeAssertion(Box<'a, TSTypeAssertion<'a>>) = 4,
TSInstantiationExpression(Box<'a, TSInstantiationExpression<'a>>) = 5,
// `MemberExpression` variants added here by `inherit_variants!` macro
@inherit MemberExpression
}There is not Expression here, it's not covered in the transformer visiter.
Test case would be for example x!++.
or transformer typescript case:
Mismatch: "compiler/incrementOnNullAssertion.ts"
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
C-bugCategory - BugCategory - Bug
Type
Fields
Give feedbackPriority
None yet