TypeScript/tests/baselines/reference/findAllRefs_importType_exportEquals.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

820 lines
15 KiB
Plaintext

// === /a.ts ===
// type /*FIND ALL REFS*/[|T|] = number;
// namespace T {
// export type U = string;
// }
// export = [|T|];
// === /b.ts ===
// const x: import("[|./a|]") = 0;
// const y: import("./a").U = "";
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/a.ts",
"kind": "type",
"name": "type T = number\nnamespace T",
"textSpan": {
"start": 5,
"length": 1
},
"displayParts": [
{
"text": "type",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "T",
"kind": "moduleName"
},
{
"text": " ",
"kind": "space"
},
{
"text": "=",
"kind": "operator"
},
{
"text": " ",
"kind": "space"
},
{
"text": "number",
"kind": "keyword"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "namespace",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "T",
"kind": "moduleName"
}
],
"contextSpan": {
"start": 0,
"length": 16
}
},
"references": [
{
"textSpan": {
"start": 5,
"length": 1
},
"fileName": "/a.ts",
"contextSpan": {
"start": 0,
"length": 16
},
"isWriteAccess": true,
"isDefinition": true
},
{
"textSpan": {
"start": 70,
"length": 1
},
"fileName": "/a.ts",
"contextSpan": {
"start": 61,
"length": 11
},
"isWriteAccess": false,
"isDefinition": false
},
{
"textSpan": {
"start": 17,
"length": 3
},
"fileName": "/b.ts",
"contextSpan": {
"start": 0,
"length": 27
},
"isWriteAccess": false,
"isDefinition": false
}
]
}
]
// === /a.ts ===
// type T = number;
// namespace /*FIND ALL REFS*/[|T|] {
// export type U = string;
// }
// export = [|T|];
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/a.ts",
"kind": "type",
"name": "namespace T",
"textSpan": {
"start": 5,
"length": 1
},
"displayParts": [
{
"text": "namespace",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "T",
"kind": "moduleName"
}
],
"contextSpan": {
"start": 0,
"length": 16
}
},
"references": [
{
"textSpan": {
"start": 27,
"length": 1
},
"fileName": "/a.ts",
"contextSpan": {
"start": 17,
"length": 43
},
"isWriteAccess": true,
"isDefinition": true
},
{
"textSpan": {
"start": 70,
"length": 1
},
"fileName": "/a.ts",
"contextSpan": {
"start": 61,
"length": 11
},
"isWriteAccess": false,
"isDefinition": false
}
]
}
]
// === /a.ts ===
// type [|T|] = number;
// namespace [|T|] {
// export type U = string;
// }
// export = /*FIND ALL REFS*/[|T|];
// === /b.ts ===
// const x: import("[|./a|]") = 0;
// const y: import("./a").U = "";
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/a.ts",
"kind": "type",
"name": "type T = number\nnamespace T",
"textSpan": {
"start": 5,
"length": 1
},
"displayParts": [
{
"text": "type",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "T",
"kind": "moduleName"
},
{
"text": " ",
"kind": "space"
},
{
"text": "=",
"kind": "operator"
},
{
"text": " ",
"kind": "space"
},
{
"text": "number",
"kind": "keyword"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "namespace",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "T",
"kind": "moduleName"
}
],
"contextSpan": {
"start": 0,
"length": 16
}
},
"references": [
{
"textSpan": {
"start": 5,
"length": 1
},
"fileName": "/a.ts",
"contextSpan": {
"start": 0,
"length": 16
},
"isWriteAccess": true,
"isDefinition": true
},
{
"textSpan": {
"start": 27,
"length": 1
},
"fileName": "/a.ts",
"contextSpan": {
"start": 17,
"length": 43
},
"isWriteAccess": true,
"isDefinition": true
},
{
"textSpan": {
"start": 70,
"length": 1
},
"fileName": "/a.ts",
"contextSpan": {
"start": 61,
"length": 11
},
"isWriteAccess": false,
"isDefinition": false
},
{
"textSpan": {
"start": 17,
"length": 3
},
"fileName": "/b.ts",
"contextSpan": {
"start": 0,
"length": 27
},
"isWriteAccess": false,
"isDefinition": false
}
]
}
]
// === /a.ts ===
// type [|T|] = number;
// namespace [|T|] {
// export type U = string;
// }
// [|export|] = [|T|];
// === /b.ts ===
// const x: import("/*FIND ALL REFS*/[|./a|]") = 0;
// const y: import("[|./a|]").U = "";
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/a.ts",
"kind": "module",
"name": "module \"/a\"",
"textSpan": {
"start": 0,
"length": 72
},
"displayParts": [
{
"text": "module",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "\"/a\"",
"kind": "stringLiteral"
}
]
},
"references": [
{
"textSpan": {
"start": 45,
"length": 3
},
"fileName": "/b.ts",
"contextSpan": {
"start": 28,
"length": 30
},
"isWriteAccess": false,
"isDefinition": false
},
{
"textSpan": {
"start": 61,
"length": 6
},
"fileName": "/a.ts",
"contextSpan": {
"start": 61,
"length": 11
},
"isWriteAccess": false,
"isDefinition": false
}
]
},
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/a.ts",
"kind": "type",
"name": "type T = number\nnamespace T",
"textSpan": {
"start": 5,
"length": 1
},
"displayParts": [
{
"text": "type",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "T",
"kind": "moduleName"
},
{
"text": " ",
"kind": "space"
},
{
"text": "=",
"kind": "operator"
},
{
"text": " ",
"kind": "space"
},
{
"text": "number",
"kind": "keyword"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "namespace",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "T",
"kind": "moduleName"
}
],
"contextSpan": {
"start": 0,
"length": 16
}
},
"references": [
{
"textSpan": {
"start": 5,
"length": 1
},
"fileName": "/a.ts",
"contextSpan": {
"start": 0,
"length": 16
},
"isWriteAccess": true,
"isDefinition": false
},
{
"textSpan": {
"start": 27,
"length": 1
},
"fileName": "/a.ts",
"contextSpan": {
"start": 17,
"length": 43
},
"isWriteAccess": true,
"isDefinition": false
},
{
"textSpan": {
"start": 70,
"length": 1
},
"fileName": "/a.ts",
"contextSpan": {
"start": 61,
"length": 11
},
"isWriteAccess": false,
"isDefinition": false
},
{
"textSpan": {
"start": 17,
"length": 3
},
"fileName": "/b.ts",
"contextSpan": {
"start": 0,
"length": 27
},
"isWriteAccess": false,
"isDefinition": false
}
]
}
]
// === /a.ts ===
// type [|T|] = number;
// namespace [|T|] {
// export type U = string;
// }
// [|export|] = [|T|];
// === /b.ts ===
// const x: import("[|./a|]") = 0;
// const y: import("/*FIND ALL REFS*/[|./a|]").U = "";
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/a.ts",
"kind": "module",
"name": "module \"/a\"",
"textSpan": {
"start": 0,
"length": 72
},
"displayParts": [
{
"text": "module",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "\"/a\"",
"kind": "stringLiteral"
}
]
},
"references": [
{
"textSpan": {
"start": 45,
"length": 3
},
"fileName": "/b.ts",
"contextSpan": {
"start": 28,
"length": 30
},
"isWriteAccess": false,
"isDefinition": false
},
{
"textSpan": {
"start": 61,
"length": 6
},
"fileName": "/a.ts",
"contextSpan": {
"start": 61,
"length": 11
},
"isWriteAccess": false,
"isDefinition": false
}
]
},
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/a.ts",
"kind": "type",
"name": "type T = number\nnamespace T",
"textSpan": {
"start": 5,
"length": 1
},
"displayParts": [
{
"text": "type",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "T",
"kind": "moduleName"
},
{
"text": " ",
"kind": "space"
},
{
"text": "=",
"kind": "operator"
},
{
"text": " ",
"kind": "space"
},
{
"text": "number",
"kind": "keyword"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "namespace",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "T",
"kind": "moduleName"
}
],
"contextSpan": {
"start": 0,
"length": 16
}
},
"references": [
{
"textSpan": {
"start": 5,
"length": 1
},
"fileName": "/a.ts",
"contextSpan": {
"start": 0,
"length": 16
},
"isWriteAccess": true,
"isDefinition": false
},
{
"textSpan": {
"start": 27,
"length": 1
},
"fileName": "/a.ts",
"contextSpan": {
"start": 17,
"length": 43
},
"isWriteAccess": true,
"isDefinition": false
},
{
"textSpan": {
"start": 70,
"length": 1
},
"fileName": "/a.ts",
"contextSpan": {
"start": 61,
"length": 11
},
"isWriteAccess": false,
"isDefinition": false
},
{
"textSpan": {
"start": 17,
"length": 3
},
"fileName": "/b.ts",
"contextSpan": {
"start": 0,
"length": 27
},
"isWriteAccess": false,
"isDefinition": false
}
]
}
]
// === /a.ts ===
// type [|T|] = number;
// namespace [|T|] {
// export type U = string;
// }
// /*FIND ALL REFS*/export = [|T|];
// === /b.ts ===
// const x: import("[|./a|]") = 0;
// const y: import("./a").U = "";
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/a.ts",
"kind": "type",
"name": "type T = number\nnamespace T",
"textSpan": {
"start": 5,
"length": 1
},
"displayParts": [
{
"text": "type",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "T",
"kind": "moduleName"
},
{
"text": " ",
"kind": "space"
},
{
"text": "=",
"kind": "operator"
},
{
"text": " ",
"kind": "space"
},
{
"text": "number",
"kind": "keyword"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "namespace",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "T",
"kind": "moduleName"
}
],
"contextSpan": {
"start": 0,
"length": 16
}
},
"references": [
{
"textSpan": {
"start": 5,
"length": 1
},
"fileName": "/a.ts",
"contextSpan": {
"start": 0,
"length": 16
},
"isWriteAccess": true,
"isDefinition": false
},
{
"textSpan": {
"start": 27,
"length": 1
},
"fileName": "/a.ts",
"contextSpan": {
"start": 17,
"length": 43
},
"isWriteAccess": true,
"isDefinition": false
},
{
"textSpan": {
"start": 70,
"length": 1
},
"fileName": "/a.ts",
"contextSpan": {
"start": 61,
"length": 11
},
"isWriteAccess": false,
"isDefinition": false
},
{
"textSpan": {
"start": 17,
"length": 3
},
"fileName": "/b.ts",
"contextSpan": {
"start": 0,
"length": 27
},
"isWriteAccess": false,
"isDefinition": false
}
]
}
]