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

1021 lines
20 KiB
Plaintext

// === /tests/cases/fourslash/b.ts ===
// import { [|Class|] as [|C2|] } from "./a";
// var c = new [|C2|]();
// === /tests/cases/fourslash/c.ts ===
// export { [|Class|] as [|C3|] } from "./a";
// === /tests/cases/fourslash/a.ts ===
// export class /*FIND ALL REFS*/[|Class|] {}
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/a.ts",
"kind": "class",
"name": "class Class",
"textSpan": {
"start": 13,
"length": 5
},
"displayParts": [
{
"text": "class",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "Class",
"kind": "className"
}
],
"contextSpan": {
"start": 0,
"length": 21
}
},
"references": [
{
"textSpan": {
"start": 13,
"length": 5
},
"fileName": "/tests/cases/fourslash/a.ts",
"contextSpan": {
"start": 0,
"length": 21
},
"isWriteAccess": true,
"isDefinition": true
},
{
"textSpan": {
"start": 9,
"length": 5
},
"fileName": "/tests/cases/fourslash/b.ts",
"contextSpan": {
"start": 0,
"length": 34
},
"isWriteAccess": false,
"isDefinition": false
},
{
"textSpan": {
"start": 9,
"length": 5
},
"fileName": "/tests/cases/fourslash/c.ts",
"contextSpan": {
"start": 0,
"length": 34
},
"isWriteAccess": false,
"isDefinition": false
}
]
},
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/b.ts",
"kind": "alias",
"name": "(alias) class C2\nimport C2",
"textSpan": {
"start": 18,
"length": 2
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "alias",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "class",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "C2",
"kind": "aliasName"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "import",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "C2",
"kind": "aliasName"
}
],
"contextSpan": {
"start": 0,
"length": 34
}
},
"references": [
{
"textSpan": {
"start": 18,
"length": 2
},
"fileName": "/tests/cases/fourslash/b.ts",
"contextSpan": {
"start": 0,
"length": 34
},
"isWriteAccess": true,
"isDefinition": false
},
{
"textSpan": {
"start": 47,
"length": 2
},
"fileName": "/tests/cases/fourslash/b.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
},
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/c.ts",
"kind": "alias",
"name": "(alias) class C3\nexport C3",
"textSpan": {
"start": 18,
"length": 2
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "alias",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "class",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "C3",
"kind": "aliasName"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "export",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "C3",
"kind": "aliasName"
}
],
"contextSpan": {
"start": 0,
"length": 34
}
},
"references": [
{
"textSpan": {
"start": 18,
"length": 2
},
"fileName": "/tests/cases/fourslash/c.ts",
"contextSpan": {
"start": 0,
"length": 34
},
"isWriteAccess": true,
"isDefinition": false
}
]
}
]
// === /tests/cases/fourslash/b.ts ===
// import { /*FIND ALL REFS*/[|Class|] as [|C2|] } from "./a";
// var c = new [|C2|]();
// === /tests/cases/fourslash/c.ts ===
// export { [|Class|] as [|C3|] } from "./a";
// === /tests/cases/fourslash/a.ts ===
// export class [|Class|] {}
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/a.ts",
"kind": "class",
"name": "class Class",
"textSpan": {
"start": 13,
"length": 5
},
"displayParts": [
{
"text": "class",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "Class",
"kind": "className"
}
],
"contextSpan": {
"start": 0,
"length": 21
}
},
"references": [
{
"textSpan": {
"start": 13,
"length": 5
},
"fileName": "/tests/cases/fourslash/a.ts",
"contextSpan": {
"start": 0,
"length": 21
},
"isWriteAccess": true,
"isDefinition": true
},
{
"textSpan": {
"start": 9,
"length": 5
},
"fileName": "/tests/cases/fourslash/b.ts",
"contextSpan": {
"start": 0,
"length": 34
},
"isWriteAccess": false,
"isDefinition": false
},
{
"textSpan": {
"start": 9,
"length": 5
},
"fileName": "/tests/cases/fourslash/c.ts",
"contextSpan": {
"start": 0,
"length": 34
},
"isWriteAccess": false,
"isDefinition": false
}
]
},
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/b.ts",
"kind": "alias",
"name": "(alias) class C2\nimport C2",
"textSpan": {
"start": 18,
"length": 2
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "alias",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "class",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "C2",
"kind": "aliasName"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "import",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "C2",
"kind": "aliasName"
}
],
"contextSpan": {
"start": 0,
"length": 34
}
},
"references": [
{
"textSpan": {
"start": 18,
"length": 2
},
"fileName": "/tests/cases/fourslash/b.ts",
"contextSpan": {
"start": 0,
"length": 34
},
"isWriteAccess": true,
"isDefinition": false
},
{
"textSpan": {
"start": 47,
"length": 2
},
"fileName": "/tests/cases/fourslash/b.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
},
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/c.ts",
"kind": "alias",
"name": "(alias) class C3\nexport C3",
"textSpan": {
"start": 18,
"length": 2
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "alias",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "class",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "C3",
"kind": "aliasName"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "export",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "C3",
"kind": "aliasName"
}
],
"contextSpan": {
"start": 0,
"length": 34
}
},
"references": [
{
"textSpan": {
"start": 18,
"length": 2
},
"fileName": "/tests/cases/fourslash/c.ts",
"contextSpan": {
"start": 0,
"length": 34
},
"isWriteAccess": true,
"isDefinition": false
}
]
}
]
// === /tests/cases/fourslash/b.ts ===
// import { [|Class|] as [|C2|] } from "./a";
// var c = new [|C2|]();
// === /tests/cases/fourslash/c.ts ===
// export { /*FIND ALL REFS*/[|Class|] as [|C3|] } from "./a";
// === /tests/cases/fourslash/a.ts ===
// export class [|Class|] {}
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/a.ts",
"kind": "class",
"name": "class Class",
"textSpan": {
"start": 13,
"length": 5
},
"displayParts": [
{
"text": "class",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "Class",
"kind": "className"
}
],
"contextSpan": {
"start": 0,
"length": 21
}
},
"references": [
{
"textSpan": {
"start": 13,
"length": 5
},
"fileName": "/tests/cases/fourslash/a.ts",
"contextSpan": {
"start": 0,
"length": 21
},
"isWriteAccess": true,
"isDefinition": true
},
{
"textSpan": {
"start": 9,
"length": 5
},
"fileName": "/tests/cases/fourslash/b.ts",
"contextSpan": {
"start": 0,
"length": 34
},
"isWriteAccess": false,
"isDefinition": false
},
{
"textSpan": {
"start": 9,
"length": 5
},
"fileName": "/tests/cases/fourslash/c.ts",
"contextSpan": {
"start": 0,
"length": 34
},
"isWriteAccess": false,
"isDefinition": false
}
]
},
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/b.ts",
"kind": "alias",
"name": "(alias) class C2\nimport C2",
"textSpan": {
"start": 18,
"length": 2
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "alias",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "class",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "C2",
"kind": "aliasName"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "import",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "C2",
"kind": "aliasName"
}
],
"contextSpan": {
"start": 0,
"length": 34
}
},
"references": [
{
"textSpan": {
"start": 18,
"length": 2
},
"fileName": "/tests/cases/fourslash/b.ts",
"contextSpan": {
"start": 0,
"length": 34
},
"isWriteAccess": true,
"isDefinition": false
},
{
"textSpan": {
"start": 47,
"length": 2
},
"fileName": "/tests/cases/fourslash/b.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
},
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/c.ts",
"kind": "alias",
"name": "(alias) class C3\nexport C3",
"textSpan": {
"start": 18,
"length": 2
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "alias",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "class",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "C3",
"kind": "aliasName"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "export",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "C3",
"kind": "aliasName"
}
],
"contextSpan": {
"start": 0,
"length": 34
}
},
"references": [
{
"textSpan": {
"start": 18,
"length": 2
},
"fileName": "/tests/cases/fourslash/c.ts",
"contextSpan": {
"start": 0,
"length": 34
},
"isWriteAccess": true,
"isDefinition": false
}
]
}
]
// === /tests/cases/fourslash/b.ts ===
// import { Class as /*FIND ALL REFS*/[|C2|] } from "./a";
// var c = new [|C2|]();
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/b.ts",
"kind": "alias",
"name": "(alias) class C2\nimport C2",
"textSpan": {
"start": 18,
"length": 2
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "alias",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "class",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "C2",
"kind": "aliasName"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "import",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "C2",
"kind": "aliasName"
}
],
"contextSpan": {
"start": 0,
"length": 34
}
},
"references": [
{
"textSpan": {
"start": 18,
"length": 2
},
"fileName": "/tests/cases/fourslash/b.ts",
"contextSpan": {
"start": 0,
"length": 34
},
"isWriteAccess": true,
"isDefinition": true
},
{
"textSpan": {
"start": 47,
"length": 2
},
"fileName": "/tests/cases/fourslash/b.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
}
]
// === /tests/cases/fourslash/b.ts ===
// import { Class as [|C2|] } from "./a";
// var c = new /*FIND ALL REFS*/[|C2|]();
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/b.ts",
"kind": "alias",
"name": "(alias) class C2\nimport C2",
"textSpan": {
"start": 18,
"length": 2
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "alias",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "class",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "C2",
"kind": "aliasName"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "import",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "C2",
"kind": "aliasName"
}
],
"contextSpan": {
"start": 0,
"length": 34
}
},
"references": [
{
"textSpan": {
"start": 18,
"length": 2
},
"fileName": "/tests/cases/fourslash/b.ts",
"contextSpan": {
"start": 0,
"length": 34
},
"isWriteAccess": true,
"isDefinition": true
},
{
"textSpan": {
"start": 47,
"length": 2
},
"fileName": "/tests/cases/fourslash/b.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
}
]
// === /tests/cases/fourslash/c.ts ===
// export { Class as /*FIND ALL REFS*/[|C3|] } from "./a";
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/c.ts",
"kind": "alias",
"name": "(alias) class C3\nexport C3",
"textSpan": {
"start": 18,
"length": 2
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "alias",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "class",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "C3",
"kind": "aliasName"
},
{
"text": "\n",
"kind": "lineBreak"
},
{
"text": "export",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "C3",
"kind": "aliasName"
}
],
"contextSpan": {
"start": 0,
"length": 34
}
},
"references": [
{
"textSpan": {
"start": 18,
"length": 2
},
"fileName": "/tests/cases/fourslash/c.ts",
"contextSpan": {
"start": 0,
"length": 34
},
"isWriteAccess": true,
"isDefinition": true
}
]
}
]