323be39297
For the following example, the cursor is between `keySpan` and `valueSpan` of the `BoundAttribute`. ```html <test-cmp [foo]¦="bar"></test-cmp> ``` Our hybrid visitor will return `Element`in this case, which is the parent node of the `BoundAttribute`. This is because we only look at the `keySpan` and `valueSpan`, and not the source span. The last element in the AST path is `Element`, so it gets returned. In this PR, I propose fixing this by adding a sentinel value `undefined` to the AST path to signal that we've found a source span but the cursor is neither in the key span nor the value span. PR Close #38995