We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
TypeScript Version: nightly (2.4.0-dev.20170530)
Code
interface I { x: number; } function f({ x }: I) { return x; }
Expected behavior:
Goto-definition at x in { x } should go to the property declaration.
x
{ x }
Actual behavior:
It takes me to the beginning of the identifier that I'm already at.