pascal-language-server
pascal-language-server copied to clipboard
`textDocument/implementation` doesn't work in code blocks
Now go to implementation will jump to the declaration if you use it on a function call within a code block. Internally it uses CodeToolBoss.JumpToMethod
which only works on declarations so we may need to find the declaration first and then call CodeToolBoss.JumpToMethod again on that node.