-
-
Notifications
You must be signed in to change notification settings - Fork 647
Closed as not planned
Labels
Description
Spans for binding identifiers cover the identifier itself and the type annotation on BindingPattern
. This was introduced in #2624, and is blocking oxc-project/backlog#84.
Expected Behavior
// ___________ BindingPattern
const foo: number = 1
// ^^^-------- TSTypeAnnotation
// ^^^BindingIdentifier
Actual Behavior
// ___________ BindingPattern and BindingIdentifier
const foo: number = 1
// -------- TSTypeAnnotation