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

861 lines
18 KiB
Plaintext

// === /tests/cases/fourslash/renameImportOfExportEquals.ts ===
// declare namespace /*FIND ALL REFS*/[|N|] {
// export var x: number;
// }
// declare module "mod" {
// export = [|N|];
// }
// declare module "a" {
// import * as [|N|] from "mod";
// export { [|N|] }; // Renaming N here would rename
// }
// declare module "b" {
// import { [|N|] } from "a";
// export const y: typeof [|N|].x;
// }
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/renameImportOfExportEquals.ts",
"kind": "module",
"name": "namespace N",
"textSpan": {
"start": 18,
"length": 1
},
"displayParts": [
{
"text": "namespace",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "N",
"kind": "moduleName"
}
],
"contextSpan": {
"start": 0,
"length": 49
}
},
"references": [
{
"textSpan": {
"start": 18,
"length": 1
},
"fileName": "/tests/cases/fourslash/renameImportOfExportEquals.ts",
"contextSpan": {
"start": 0,
"length": 49
},
"isWriteAccess": true,
"isDefinition": true
},
{
"textSpan": {
"start": 86,
"length": 1
},
"fileName": "/tests/cases/fourslash/renameImportOfExportEquals.ts",
"contextSpan": {
"start": 77,
"length": 11
},
"isWriteAccess": false,
"isDefinition": false
}
]
},
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/renameImportOfExportEquals.ts",
"kind": "alias",
"name": "(alias) namespace N\nimport N",
"textSpan": {
"start": 128,
"length": 1
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "alias",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "namespace",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "N",
"kind": "aliasName"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "import",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "N",
"kind": "aliasName"
}
],
"contextSpan": {
"start": 116,
"length": 25
}
},
"references": [
{
"textSpan": {
"start": 128,
"length": 1
},
"fileName": "/tests/cases/fourslash/renameImportOfExportEquals.ts",
"contextSpan": {
"start": 116,
"length": 25
},
"isWriteAccess": true,
"isDefinition": false
},
{
"textSpan": {
"start": 155,
"length": 1
},
"fileName": "/tests/cases/fourslash/renameImportOfExportEquals.ts",
"contextSpan": {
"start": 146,
"length": 13
},
"isWriteAccess": true,
"isDefinition": false
}
]
},
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/renameImportOfExportEquals.ts",
"kind": "alias",
"name": "(alias) namespace N\nimport N",
"textSpan": {
"start": 228,
"length": 1
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "alias",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "namespace",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "N",
"kind": "aliasName"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "import",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "N",
"kind": "aliasName"
}
],
"contextSpan": {
"start": 219,
"length": 22
}
},
"references": [
{
"textSpan": {
"start": 228,
"length": 1
},
"fileName": "/tests/cases/fourslash/renameImportOfExportEquals.ts",
"contextSpan": {
"start": 219,
"length": 22
},
"isWriteAccess": true,
"isDefinition": false
},
{
"textSpan": {
"start": 269,
"length": 1
},
"fileName": "/tests/cases/fourslash/renameImportOfExportEquals.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
}
]
// === /tests/cases/fourslash/renameImportOfExportEquals.ts ===
// declare namespace [|N|] {
// export var x: number;
// }
// declare module "mod" {
// export = [|N|];
// }
// declare module "a" {
// import * as /*FIND ALL REFS*/[|N|] from "mod";
// export { [|N|] }; // Renaming N here would rename
// }
// declare module "b" {
// import { [|N|] } from "a";
// export const y: typeof [|N|].x;
// }
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/renameImportOfExportEquals.ts",
"kind": "alias",
"name": "(alias) namespace N\nimport N",
"textSpan": {
"start": 128,
"length": 1
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "alias",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "namespace",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "N",
"kind": "aliasName"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "import",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "N",
"kind": "aliasName"
}
],
"contextSpan": {
"start": 116,
"length": 25
}
},
"references": [
{
"textSpan": {
"start": 128,
"length": 1
},
"fileName": "/tests/cases/fourslash/renameImportOfExportEquals.ts",
"contextSpan": {
"start": 116,
"length": 25
},
"isWriteAccess": true,
"isDefinition": true
},
{
"textSpan": {
"start": 155,
"length": 1
},
"fileName": "/tests/cases/fourslash/renameImportOfExportEquals.ts",
"contextSpan": {
"start": 146,
"length": 13
},
"isWriteAccess": true,
"isDefinition": false
}
]
},
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/renameImportOfExportEquals.ts",
"kind": "module",
"name": "namespace N",
"textSpan": {
"start": 18,
"length": 1
},
"displayParts": [
{
"text": "namespace",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "N",
"kind": "moduleName"
}
],
"contextSpan": {
"start": 0,
"length": 49
}
},
"references": [
{
"textSpan": {
"start": 18,
"length": 1
},
"fileName": "/tests/cases/fourslash/renameImportOfExportEquals.ts",
"contextSpan": {
"start": 0,
"length": 49
},
"isWriteAccess": true,
"isDefinition": false
},
{
"textSpan": {
"start": 86,
"length": 1
},
"fileName": "/tests/cases/fourslash/renameImportOfExportEquals.ts",
"contextSpan": {
"start": 77,
"length": 11
},
"isWriteAccess": false,
"isDefinition": false
}
]
},
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/renameImportOfExportEquals.ts",
"kind": "alias",
"name": "(alias) namespace N\nimport N",
"textSpan": {
"start": 228,
"length": 1
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "alias",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "namespace",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "N",
"kind": "aliasName"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "import",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "N",
"kind": "aliasName"
}
],
"contextSpan": {
"start": 219,
"length": 22
}
},
"references": [
{
"textSpan": {
"start": 228,
"length": 1
},
"fileName": "/tests/cases/fourslash/renameImportOfExportEquals.ts",
"contextSpan": {
"start": 219,
"length": 22
},
"isWriteAccess": true,
"isDefinition": false
},
{
"textSpan": {
"start": 269,
"length": 1
},
"fileName": "/tests/cases/fourslash/renameImportOfExportEquals.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
}
]
// === /tests/cases/fourslash/renameImportOfExportEquals.ts ===
// declare namespace [|N|] {
// export var x: number;
// }
// declare module "mod" {
// export = [|N|];
// }
// declare module "a" {
// import * as [|N|] from "mod";
// export { [|N|] }; // Renaming N here would rename
// }
// declare module "b" {
// import { /*FIND ALL REFS*/[|N|] } from "a";
// export const y: typeof [|N|].x;
// }
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/renameImportOfExportEquals.ts",
"kind": "alias",
"name": "(alias) namespace N\nimport N",
"textSpan": {
"start": 228,
"length": 1
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "alias",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "namespace",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "N",
"kind": "aliasName"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "import",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "N",
"kind": "aliasName"
}
],
"contextSpan": {
"start": 219,
"length": 22
}
},
"references": [
{
"textSpan": {
"start": 228,
"length": 1
},
"fileName": "/tests/cases/fourslash/renameImportOfExportEquals.ts",
"contextSpan": {
"start": 219,
"length": 22
},
"isWriteAccess": true,
"isDefinition": true
},
{
"textSpan": {
"start": 269,
"length": 1
},
"fileName": "/tests/cases/fourslash/renameImportOfExportEquals.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
},
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/renameImportOfExportEquals.ts",
"kind": "alias",
"name": "(alias) namespace N\nimport N",
"textSpan": {
"start": 128,
"length": 1
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "alias",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "namespace",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "N",
"kind": "aliasName"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "import",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "N",
"kind": "aliasName"
}
],
"contextSpan": {
"start": 116,
"length": 25
}
},
"references": [
{
"textSpan": {
"start": 128,
"length": 1
},
"fileName": "/tests/cases/fourslash/renameImportOfExportEquals.ts",
"contextSpan": {
"start": 116,
"length": 25
},
"isWriteAccess": true,
"isDefinition": false
},
{
"textSpan": {
"start": 155,
"length": 1
},
"fileName": "/tests/cases/fourslash/renameImportOfExportEquals.ts",
"contextSpan": {
"start": 146,
"length": 13
},
"isWriteAccess": true,
"isDefinition": false
}
]
},
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/renameImportOfExportEquals.ts",
"kind": "module",
"name": "namespace N",
"textSpan": {
"start": 18,
"length": 1
},
"displayParts": [
{
"text": "namespace",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "N",
"kind": "moduleName"
}
],
"contextSpan": {
"start": 0,
"length": 49
}
},
"references": [
{
"textSpan": {
"start": 18,
"length": 1
},
"fileName": "/tests/cases/fourslash/renameImportOfExportEquals.ts",
"contextSpan": {
"start": 0,
"length": 49
},
"isWriteAccess": true,
"isDefinition": false
},
{
"textSpan": {
"start": 86,
"length": 1
},
"fileName": "/tests/cases/fourslash/renameImportOfExportEquals.ts",
"contextSpan": {
"start": 77,
"length": 11
},
"isWriteAccess": false,
"isDefinition": false
}
]
}
]
// === /tests/cases/fourslash/renameImportOfExportEquals.ts ===
// declare namespace N {
// export var /*FIND ALL REFS*/[|x|]: number;
// }
// declare module "mod" {
// export = N;
// }
// declare module "a" {
// import * as N from "mod";
// export { N }; // Renaming N here would rename
// }
// declare module "b" {
// import { N } from "a";
// export const y: typeof N.[|x|];
// }
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/renameImportOfExportEquals.ts",
"kind": "var",
"name": "var N.x: number",
"textSpan": {
"start": 37,
"length": 1
},
"displayParts": [
{
"text": "var",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "N",
"kind": "moduleName"
},
{
"text": ".",
"kind": "punctuation"
},
{
"text": "x",
"kind": "localName"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "number",
"kind": "keyword"
}
],
"contextSpan": {
"start": 26,
"length": 21
}
},
"references": [
{
"textSpan": {
"start": 37,
"length": 1
},
"fileName": "/tests/cases/fourslash/renameImportOfExportEquals.ts",
"contextSpan": {
"start": 26,
"length": 21
},
"isWriteAccess": true,
"isDefinition": true
},
{
"textSpan": {
"start": 271,
"length": 1
},
"fileName": "/tests/cases/fourslash/renameImportOfExportEquals.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
}
]