(current master) If caret (`|` here) is at the end of a symbol, Go to definition does not work ```fsharp module Module1 = let foo x = x let _ = Module1|.foo 1 ```  It does work if caret is at start or in the middle: ```fsharp let _ = |Module1.foo 1 let _ = Mod|ule1.foo 1 ```