1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
// === goToDefinition ===
// === /tests/cases/fourslash/goToDefinitionShorthandProperty05.ts ===
// interface Foo {
// <|[|{| defId: 1 |}foo|](): void|>
// }
// <|const [|{| defId: 0 |}foo|] = 1;|>
// let x: Foo = {
// f/*GOTO DEF*/oo
// }
// === Details ===
[
{
"defId": 0,
"kind": "const",
"name": "foo",
"containerName": "",
"isLocal": false,
"isAmbient": false,
"unverified": false,
"failedAliasResolution": false
},
{
"defId": 1,
"kind": "method",
"name": "foo",
"containerName": "Foo",
"isLocal": false,
"isAmbient": false,
"unverified": false
}
]
|