Closed
Description
For the following code:
declare namespace M {
// cursor here
interface I {
prop;
}
var v;
}
One would expect the middle nav bar to show M, and the right nav bar to show I. But the right nav bar shows v. Effectively, it skips interfaces and shows the upcoming var instead.
The middle nav bar does show I when the cursor is inside I, as expected.