TypeScript/tests/baselines/reference/findAllRefsImportStarOfExportEquals.baseline.jsonc
Nathan Shively-Sanders f0fe1b88ca
Make isDefinition aware of declaring symbol (#45920)
* Make isDefinition aware of target symbol

Initial code, haven't fixed any tests yet.

* Update baselines

This commit includes a regression for commonjs aliases:

```js
// @filename: a.js
function f() { }
module.exports.f = f

// @filename: b.js
const { f } = require('./a')
f/**/
```

Now says that `f` in b.js has 1 reference --
the alias `module.exports.f = f`. This is not correct (or not exactly
correct), but correctly fixing will involve re-creating the ad-hoc
commonjs alias resolution code from the checker. I don't think it's
worth it for an edge case like this.

* update more unit tests

* Fix symbol lookup for constructors

* More baselines + two fixes

1. Fix `default` support.
2. Add a secondary declaration location for commonjs assignment
declarations.

* Update rest of baselines

* Switch a few more tests over to baselines
2021-09-22 13:43:52 -07:00

2855 lines
54 KiB
Plaintext

// === /b.ts ===
// import [|b|] from "a";
// [|b|]();
// [|b|].x;
// === /c.ts ===
// import [|a|] from "a";
// [|a|]();
// [|a|].x;
// === /node_modules/a/index.d.ts ===
// declare function /*FIND ALL REFS*/[|a|](): void;
// declare namespace [|a|] {
// export const x: number;
// }
// export = [|a|];
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/node_modules/a/index.d.ts",
"kind": "function",
"name": "namespace a\nfunction a(): void",
"textSpan": {
"start": 17,
"length": 1
},
"displayParts": [
{
"text": "namespace",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "a",
"kind": "functionName"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "function",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "a",
"kind": "functionName"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "void",
"kind": "keyword"
}
],
"contextSpan": {
"start": 0,
"length": 27
}
},
"references": [
{
"textSpan": {
"start": 17,
"length": 1
},
"fileName": "/node_modules/a/index.d.ts",
"contextSpan": {
"start": 0,
"length": 27
},
"isWriteAccess": true,
"isDefinition": true
},
{
"textSpan": {
"start": 46,
"length": 1
},
"fileName": "/node_modules/a/index.d.ts",
"contextSpan": {
"start": 28,
"length": 51
},
"isWriteAccess": true,
"isDefinition": true
},
{
"textSpan": {
"start": 89,
"length": 1
},
"fileName": "/node_modules/a/index.d.ts",
"contextSpan": {
"start": 80,
"length": 11
},
"isWriteAccess": false,
"isDefinition": false
}
]
},
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/b.ts",
"kind": "alias",
"name": "(alias) function b(): void\n(alias) namespace b\nimport b",
"textSpan": {
"start": 7,
"length": 1
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "alias",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "function",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "b",
"kind": "aliasName"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "void",
"kind": "keyword"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": "alias",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "namespace",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "b",
"kind": "aliasName"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "import",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "b",
"kind": "aliasName"
}
],
"contextSpan": {
"start": 0,
"length": 18
}
},
"references": [
{
"textSpan": {
"start": 7,
"length": 1
},
"fileName": "/b.ts",
"contextSpan": {
"start": 0,
"length": 18
},
"isWriteAccess": true,
"isDefinition": false
},
{
"textSpan": {
"start": 19,
"length": 1
},
"fileName": "/b.ts",
"isWriteAccess": false,
"isDefinition": false
},
{
"textSpan": {
"start": 24,
"length": 1
},
"fileName": "/b.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
},
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/c.ts",
"kind": "alias",
"name": "(alias) function a(): void\n(alias) namespace a\nimport a",
"textSpan": {
"start": 7,
"length": 1
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "alias",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "function",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "a",
"kind": "aliasName"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "void",
"kind": "keyword"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": "alias",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "namespace",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "a",
"kind": "aliasName"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "import",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "a",
"kind": "aliasName"
}
],
"contextSpan": {
"start": 0,
"length": 18
}
},
"references": [
{
"textSpan": {
"start": 7,
"length": 1
},
"fileName": "/c.ts",
"contextSpan": {
"start": 0,
"length": 18
},
"isWriteAccess": true,
"isDefinition": false
},
{
"textSpan": {
"start": 19,
"length": 1
},
"fileName": "/c.ts",
"isWriteAccess": false,
"isDefinition": false
},
{
"textSpan": {
"start": 24,
"length": 1
},
"fileName": "/c.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
}
]
// === /b.ts ===
// import [|b|] from "a";
// [|b|]();
// [|b|].x;
// === /c.ts ===
// import [|a|] from "a";
// [|a|]();
// [|a|].x;
// === /node_modules/a/index.d.ts ===
// declare function [|a|](): void;
// declare namespace /*FIND ALL REFS*/[|a|] {
// export const x: number;
// }
// export = [|a|];
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/node_modules/a/index.d.ts",
"kind": "function",
"name": "namespace a\nfunction a(): void",
"textSpan": {
"start": 17,
"length": 1
},
"displayParts": [
{
"text": "namespace",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "a",
"kind": "functionName"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "function",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "a",
"kind": "functionName"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "void",
"kind": "keyword"
}
],
"contextSpan": {
"start": 0,
"length": 27
}
},
"references": [
{
"textSpan": {
"start": 17,
"length": 1
},
"fileName": "/node_modules/a/index.d.ts",
"contextSpan": {
"start": 0,
"length": 27
},
"isWriteAccess": true,
"isDefinition": true
},
{
"textSpan": {
"start": 46,
"length": 1
},
"fileName": "/node_modules/a/index.d.ts",
"contextSpan": {
"start": 28,
"length": 51
},
"isWriteAccess": true,
"isDefinition": true
},
{
"textSpan": {
"start": 89,
"length": 1
},
"fileName": "/node_modules/a/index.d.ts",
"contextSpan": {
"start": 80,
"length": 11
},
"isWriteAccess": false,
"isDefinition": false
}
]
},
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/b.ts",
"kind": "alias",
"name": "(alias) function b(): void\n(alias) namespace b\nimport b",
"textSpan": {
"start": 7,
"length": 1
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "alias",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "function",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "b",
"kind": "aliasName"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "void",
"kind": "keyword"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": "alias",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "namespace",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "b",
"kind": "aliasName"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "import",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "b",
"kind": "aliasName"
}
],
"contextSpan": {
"start": 0,
"length": 18
}
},
"references": [
{
"textSpan": {
"start": 7,
"length": 1
},
"fileName": "/b.ts",
"contextSpan": {
"start": 0,
"length": 18
},
"isWriteAccess": true,
"isDefinition": false
},
{
"textSpan": {
"start": 19,
"length": 1
},
"fileName": "/b.ts",
"isWriteAccess": false,
"isDefinition": false
},
{
"textSpan": {
"start": 24,
"length": 1
},
"fileName": "/b.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
},
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/c.ts",
"kind": "alias",
"name": "(alias) function a(): void\n(alias) namespace a\nimport a",
"textSpan": {
"start": 7,
"length": 1
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "alias",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "function",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "a",
"kind": "aliasName"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "void",
"kind": "keyword"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": "alias",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "namespace",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "a",
"kind": "aliasName"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "import",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "a",
"kind": "aliasName"
}
],
"contextSpan": {
"start": 0,
"length": 18
}
},
"references": [
{
"textSpan": {
"start": 7,
"length": 1
},
"fileName": "/c.ts",
"contextSpan": {
"start": 0,
"length": 18
},
"isWriteAccess": true,
"isDefinition": false
},
{
"textSpan": {
"start": 19,
"length": 1
},
"fileName": "/c.ts",
"isWriteAccess": false,
"isDefinition": false
},
{
"textSpan": {
"start": 24,
"length": 1
},
"fileName": "/c.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
}
]
// === /b.ts ===
// import [|b|] from "a";
// [|b|]();
// [|b|].x;
// === /c.ts ===
// import [|a|] from "a";
// [|a|]();
// [|a|].x;
// === /node_modules/a/index.d.ts ===
// declare function [|a|](): void;
// declare namespace [|a|] {
// export const x: number;
// }
// export = /*FIND ALL REFS*/[|a|];
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/node_modules/a/index.d.ts",
"kind": "function",
"name": "namespace a\nfunction a(): void",
"textSpan": {
"start": 17,
"length": 1
},
"displayParts": [
{
"text": "namespace",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "a",
"kind": "functionName"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "function",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "a",
"kind": "functionName"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "void",
"kind": "keyword"
}
],
"contextSpan": {
"start": 0,
"length": 27
}
},
"references": [
{
"textSpan": {
"start": 17,
"length": 1
},
"fileName": "/node_modules/a/index.d.ts",
"contextSpan": {
"start": 0,
"length": 27
},
"isWriteAccess": true,
"isDefinition": true
},
{
"textSpan": {
"start": 46,
"length": 1
},
"fileName": "/node_modules/a/index.d.ts",
"contextSpan": {
"start": 28,
"length": 51
},
"isWriteAccess": true,
"isDefinition": true
},
{
"textSpan": {
"start": 89,
"length": 1
},
"fileName": "/node_modules/a/index.d.ts",
"contextSpan": {
"start": 80,
"length": 11
},
"isWriteAccess": false,
"isDefinition": false
}
]
},
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/b.ts",
"kind": "alias",
"name": "(alias) function b(): void\n(alias) namespace b\nimport b",
"textSpan": {
"start": 7,
"length": 1
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "alias",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "function",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "b",
"kind": "aliasName"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "void",
"kind": "keyword"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": "alias",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "namespace",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "b",
"kind": "aliasName"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "import",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "b",
"kind": "aliasName"
}
],
"contextSpan": {
"start": 0,
"length": 18
}
},
"references": [
{
"textSpan": {
"start": 7,
"length": 1
},
"fileName": "/b.ts",
"contextSpan": {
"start": 0,
"length": 18
},
"isWriteAccess": true,
"isDefinition": false
},
{
"textSpan": {
"start": 19,
"length": 1
},
"fileName": "/b.ts",
"isWriteAccess": false,
"isDefinition": false
},
{
"textSpan": {
"start": 24,
"length": 1
},
"fileName": "/b.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
},
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/c.ts",
"kind": "alias",
"name": "(alias) function a(): void\n(alias) namespace a\nimport a",
"textSpan": {
"start": 7,
"length": 1
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "alias",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "function",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "a",
"kind": "aliasName"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "void",
"kind": "keyword"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": "alias",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "namespace",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "a",
"kind": "aliasName"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "import",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "a",
"kind": "aliasName"
}
],
"contextSpan": {
"start": 0,
"length": 18
}
},
"references": [
{
"textSpan": {
"start": 7,
"length": 1
},
"fileName": "/c.ts",
"contextSpan": {
"start": 0,
"length": 18
},
"isWriteAccess": true,
"isDefinition": false
},
{
"textSpan": {
"start": 19,
"length": 1
},
"fileName": "/c.ts",
"isWriteAccess": false,
"isDefinition": false
},
{
"textSpan": {
"start": 24,
"length": 1
},
"fileName": "/c.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
}
]
// === /b.ts ===
// import /*FIND ALL REFS*/[|b|] from "a";
// [|b|]();
// [|b|].x;
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/b.ts",
"kind": "alias",
"name": "(alias) function b(): void\n(alias) namespace b\nimport b",
"textSpan": {
"start": 7,
"length": 1
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "alias",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "function",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "b",
"kind": "aliasName"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "void",
"kind": "keyword"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": "alias",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "namespace",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "b",
"kind": "aliasName"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "import",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "b",
"kind": "aliasName"
}
],
"contextSpan": {
"start": 0,
"length": 18
}
},
"references": [
{
"textSpan": {
"start": 7,
"length": 1
},
"fileName": "/b.ts",
"contextSpan": {
"start": 0,
"length": 18
},
"isWriteAccess": true,
"isDefinition": true
},
{
"textSpan": {
"start": 19,
"length": 1
},
"fileName": "/b.ts",
"isWriteAccess": false,
"isDefinition": false
},
{
"textSpan": {
"start": 24,
"length": 1
},
"fileName": "/b.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
}
]
// === /b.ts ===
// import [|b|] from "a";
// /*FIND ALL REFS*/[|b|]();
// [|b|].x;
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/b.ts",
"kind": "alias",
"name": "(alias) function b(): void\n(alias) namespace b\nimport b",
"textSpan": {
"start": 7,
"length": 1
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "alias",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "function",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "b",
"kind": "aliasName"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "void",
"kind": "keyword"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": "alias",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "namespace",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "b",
"kind": "aliasName"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "import",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "b",
"kind": "aliasName"
}
],
"contextSpan": {
"start": 0,
"length": 18
}
},
"references": [
{
"textSpan": {
"start": 7,
"length": 1
},
"fileName": "/b.ts",
"contextSpan": {
"start": 0,
"length": 18
},
"isWriteAccess": true,
"isDefinition": true
},
{
"textSpan": {
"start": 19,
"length": 1
},
"fileName": "/b.ts",
"isWriteAccess": false,
"isDefinition": false
},
{
"textSpan": {
"start": 24,
"length": 1
},
"fileName": "/b.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
}
]
// === /c.ts ===
// import /*FIND ALL REFS*/[|a|] from "a";
// [|a|]();
// [|a|].x;
// === /b.ts ===
// import [|b|] from "a";
// [|b|]();
// [|b|].x;
// === /node_modules/a/index.d.ts ===
// declare function [|a|](): void;
// declare namespace [|a|] {
// export const x: number;
// }
// export = [|a|];
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/c.ts",
"kind": "alias",
"name": "(alias) function a(): void\n(alias) namespace a\nimport a",
"textSpan": {
"start": 7,
"length": 1
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "alias",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "function",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "a",
"kind": "aliasName"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "void",
"kind": "keyword"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": "alias",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "namespace",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "a",
"kind": "aliasName"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "import",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "a",
"kind": "aliasName"
}
],
"contextSpan": {
"start": 0,
"length": 18
}
},
"references": [
{
"textSpan": {
"start": 7,
"length": 1
},
"fileName": "/c.ts",
"contextSpan": {
"start": 0,
"length": 18
},
"isWriteAccess": true,
"isDefinition": true
},
{
"textSpan": {
"start": 19,
"length": 1
},
"fileName": "/c.ts",
"isWriteAccess": false,
"isDefinition": false
},
{
"textSpan": {
"start": 24,
"length": 1
},
"fileName": "/c.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
},
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/node_modules/a/index.d.ts",
"kind": "function",
"name": "namespace a\nfunction a(): void",
"textSpan": {
"start": 17,
"length": 1
},
"displayParts": [
{
"text": "namespace",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "a",
"kind": "functionName"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "function",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "a",
"kind": "functionName"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "void",
"kind": "keyword"
}
],
"contextSpan": {
"start": 0,
"length": 27
}
},
"references": [
{
"textSpan": {
"start": 17,
"length": 1
},
"fileName": "/node_modules/a/index.d.ts",
"contextSpan": {
"start": 0,
"length": 27
},
"isWriteAccess": true,
"isDefinition": false
},
{
"textSpan": {
"start": 46,
"length": 1
},
"fileName": "/node_modules/a/index.d.ts",
"contextSpan": {
"start": 28,
"length": 51
},
"isWriteAccess": true,
"isDefinition": false
},
{
"textSpan": {
"start": 89,
"length": 1
},
"fileName": "/node_modules/a/index.d.ts",
"contextSpan": {
"start": 80,
"length": 11
},
"isWriteAccess": false,
"isDefinition": false
}
]
},
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/b.ts",
"kind": "alias",
"name": "(alias) function b(): void\n(alias) namespace b\nimport b",
"textSpan": {
"start": 7,
"length": 1
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "alias",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "function",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "b",
"kind": "aliasName"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "void",
"kind": "keyword"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": "alias",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "namespace",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "b",
"kind": "aliasName"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "import",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "b",
"kind": "aliasName"
}
],
"contextSpan": {
"start": 0,
"length": 18
}
},
"references": [
{
"textSpan": {
"start": 7,
"length": 1
},
"fileName": "/b.ts",
"contextSpan": {
"start": 0,
"length": 18
},
"isWriteAccess": true,
"isDefinition": false
},
{
"textSpan": {
"start": 19,
"length": 1
},
"fileName": "/b.ts",
"isWriteAccess": false,
"isDefinition": false
},
{
"textSpan": {
"start": 24,
"length": 1
},
"fileName": "/b.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
}
]
// === /c.ts ===
// import [|a|] from "a";
// /*FIND ALL REFS*/[|a|]();
// [|a|].x;
// === /b.ts ===
// import [|b|] from "a";
// [|b|]();
// [|b|].x;
// === /node_modules/a/index.d.ts ===
// declare function [|a|](): void;
// declare namespace [|a|] {
// export const x: number;
// }
// export = [|a|];
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/c.ts",
"kind": "alias",
"name": "(alias) function a(): void\n(alias) namespace a\nimport a",
"textSpan": {
"start": 7,
"length": 1
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "alias",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "function",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "a",
"kind": "aliasName"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "void",
"kind": "keyword"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": "alias",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "namespace",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "a",
"kind": "aliasName"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "import",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "a",
"kind": "aliasName"
}
],
"contextSpan": {
"start": 0,
"length": 18
}
},
"references": [
{
"textSpan": {
"start": 7,
"length": 1
},
"fileName": "/c.ts",
"contextSpan": {
"start": 0,
"length": 18
},
"isWriteAccess": true,
"isDefinition": true
},
{
"textSpan": {
"start": 19,
"length": 1
},
"fileName": "/c.ts",
"isWriteAccess": false,
"isDefinition": false
},
{
"textSpan": {
"start": 24,
"length": 1
},
"fileName": "/c.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
},
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/node_modules/a/index.d.ts",
"kind": "function",
"name": "namespace a\nfunction a(): void",
"textSpan": {
"start": 17,
"length": 1
},
"displayParts": [
{
"text": "namespace",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "a",
"kind": "functionName"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "function",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "a",
"kind": "functionName"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "void",
"kind": "keyword"
}
],
"contextSpan": {
"start": 0,
"length": 27
}
},
"references": [
{
"textSpan": {
"start": 17,
"length": 1
},
"fileName": "/node_modules/a/index.d.ts",
"contextSpan": {
"start": 0,
"length": 27
},
"isWriteAccess": true,
"isDefinition": false
},
{
"textSpan": {
"start": 46,
"length": 1
},
"fileName": "/node_modules/a/index.d.ts",
"contextSpan": {
"start": 28,
"length": 51
},
"isWriteAccess": true,
"isDefinition": false
},
{
"textSpan": {
"start": 89,
"length": 1
},
"fileName": "/node_modules/a/index.d.ts",
"contextSpan": {
"start": 80,
"length": 11
},
"isWriteAccess": false,
"isDefinition": false
}
]
},
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/b.ts",
"kind": "alias",
"name": "(alias) function b(): void\n(alias) namespace b\nimport b",
"textSpan": {
"start": 7,
"length": 1
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "alias",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "function",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "b",
"kind": "aliasName"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "void",
"kind": "keyword"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": "alias",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "namespace",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "b",
"kind": "aliasName"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "import",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "b",
"kind": "aliasName"
}
],
"contextSpan": {
"start": 0,
"length": 18
}
},
"references": [
{
"textSpan": {
"start": 7,
"length": 1
},
"fileName": "/b.ts",
"contextSpan": {
"start": 0,
"length": 18
},
"isWriteAccess": true,
"isDefinition": false
},
{
"textSpan": {
"start": 19,
"length": 1
},
"fileName": "/b.ts",
"isWriteAccess": false,
"isDefinition": false
},
{
"textSpan": {
"start": 24,
"length": 1
},
"fileName": "/b.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
}
]
// === /c.ts ===
// import [|a|] from "a";
// [|a|]();
// /*FIND ALL REFS*/[|a|].x;
// === /b.ts ===
// import [|b|] from "a";
// [|b|]();
// [|b|].x;
// === /node_modules/a/index.d.ts ===
// declare function [|a|](): void;
// declare namespace [|a|] {
// export const x: number;
// }
// export = [|a|];
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/c.ts",
"kind": "alias",
"name": "(alias) function a(): void\n(alias) namespace a\nimport a",
"textSpan": {
"start": 7,
"length": 1
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "alias",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "function",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "a",
"kind": "aliasName"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "void",
"kind": "keyword"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": "alias",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "namespace",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "a",
"kind": "aliasName"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "import",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "a",
"kind": "aliasName"
}
],
"contextSpan": {
"start": 0,
"length": 18
}
},
"references": [
{
"textSpan": {
"start": 7,
"length": 1
},
"fileName": "/c.ts",
"contextSpan": {
"start": 0,
"length": 18
},
"isWriteAccess": true,
"isDefinition": true
},
{
"textSpan": {
"start": 19,
"length": 1
},
"fileName": "/c.ts",
"isWriteAccess": false,
"isDefinition": false
},
{
"textSpan": {
"start": 24,
"length": 1
},
"fileName": "/c.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
},
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/node_modules/a/index.d.ts",
"kind": "function",
"name": "namespace a\nfunction a(): void",
"textSpan": {
"start": 17,
"length": 1
},
"displayParts": [
{
"text": "namespace",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "a",
"kind": "functionName"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "function",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "a",
"kind": "functionName"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "void",
"kind": "keyword"
}
],
"contextSpan": {
"start": 0,
"length": 27
}
},
"references": [
{
"textSpan": {
"start": 17,
"length": 1
},
"fileName": "/node_modules/a/index.d.ts",
"contextSpan": {
"start": 0,
"length": 27
},
"isWriteAccess": true,
"isDefinition": false
},
{
"textSpan": {
"start": 46,
"length": 1
},
"fileName": "/node_modules/a/index.d.ts",
"contextSpan": {
"start": 28,
"length": 51
},
"isWriteAccess": true,
"isDefinition": false
},
{
"textSpan": {
"start": 89,
"length": 1
},
"fileName": "/node_modules/a/index.d.ts",
"contextSpan": {
"start": 80,
"length": 11
},
"isWriteAccess": false,
"isDefinition": false
}
]
},
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/b.ts",
"kind": "alias",
"name": "(alias) function b(): void\n(alias) namespace b\nimport b",
"textSpan": {
"start": 7,
"length": 1
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "alias",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "function",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "b",
"kind": "aliasName"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "void",
"kind": "keyword"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": "alias",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "namespace",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "b",
"kind": "aliasName"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "import",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "b",
"kind": "aliasName"
}
],
"contextSpan": {
"start": 0,
"length": 18
}
},
"references": [
{
"textSpan": {
"start": 7,
"length": 1
},
"fileName": "/b.ts",
"contextSpan": {
"start": 0,
"length": 18
},
"isWriteAccess": true,
"isDefinition": false
},
{
"textSpan": {
"start": 19,
"length": 1
},
"fileName": "/b.ts",
"isWriteAccess": false,
"isDefinition": false
},
{
"textSpan": {
"start": 24,
"length": 1
},
"fileName": "/b.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
}
]