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

1119 lines
22 KiB
Plaintext

// === /tests/cases/fourslash/referencesForInheritedProperties.ts ===
// interface interface1 {
// /*FIND ALL REFS*/[|doStuff|](): void;
// }
//
// interface interface2 extends interface1{
// [|doStuff|](): void;
// }
//
// class class1 implements interface2 {
// [|doStuff|]() {
//
// }
// }
//
// class class2 extends class1 {
//
// }
//
// var v: class2;
// v.[|doStuff|]();
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/referencesForInheritedProperties.ts",
"kind": "method",
"name": "(method) interface1.doStuff(): void",
"textSpan": {
"start": 27,
"length": 7
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "method",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "interface1",
"kind": "interfaceName"
},
{
"text": ".",
"kind": "punctuation"
},
{
"text": "doStuff",
"kind": "methodName"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "void",
"kind": "keyword"
}
],
"contextSpan": {
"start": 27,
"length": 16
}
},
"references": [
{
"textSpan": {
"start": 27,
"length": 7
},
"fileName": "/tests/cases/fourslash/referencesForInheritedProperties.ts",
"contextSpan": {
"start": 27,
"length": 16
},
"isWriteAccess": false,
"isDefinition": true
}
]
},
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/referencesForInheritedProperties.ts",
"kind": "method",
"name": "(method) interface2.doStuff(): void",
"textSpan": {
"start": 93,
"length": 7
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "method",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "interface2",
"kind": "interfaceName"
},
{
"text": ".",
"kind": "punctuation"
},
{
"text": "doStuff",
"kind": "methodName"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "void",
"kind": "keyword"
}
],
"contextSpan": {
"start": 93,
"length": 16
}
},
"references": [
{
"textSpan": {
"start": 93,
"length": 7
},
"fileName": "/tests/cases/fourslash/referencesForInheritedProperties.ts",
"contextSpan": {
"start": 93,
"length": 16
},
"isWriteAccess": false,
"isDefinition": false
}
]
},
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/referencesForInheritedProperties.ts",
"kind": "method",
"name": "(method) class1.doStuff(): void",
"textSpan": {
"start": 154,
"length": 7
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "method",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "class1",
"kind": "className"
},
{
"text": ".",
"kind": "punctuation"
},
{
"text": "doStuff",
"kind": "methodName"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "void",
"kind": "keyword"
}
],
"contextSpan": {
"start": 154,
"length": 18
}
},
"references": [
{
"textSpan": {
"start": 154,
"length": 7
},
"fileName": "/tests/cases/fourslash/referencesForInheritedProperties.ts",
"contextSpan": {
"start": 154,
"length": 18
},
"isWriteAccess": true,
"isDefinition": false
},
{
"textSpan": {
"start": 227,
"length": 7
},
"fileName": "/tests/cases/fourslash/referencesForInheritedProperties.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
}
]
// === /tests/cases/fourslash/referencesForInheritedProperties.ts ===
// interface interface1 {
// [|doStuff|](): void;
// }
//
// interface interface2 extends interface1{
// /*FIND ALL REFS*/[|doStuff|](): void;
// }
//
// class class1 implements interface2 {
// [|doStuff|]() {
//
// }
// }
//
// class class2 extends class1 {
//
// }
//
// var v: class2;
// v.[|doStuff|]();
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/referencesForInheritedProperties.ts",
"kind": "method",
"name": "(method) interface1.doStuff(): void",
"textSpan": {
"start": 27,
"length": 7
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "method",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "interface1",
"kind": "interfaceName"
},
{
"text": ".",
"kind": "punctuation"
},
{
"text": "doStuff",
"kind": "methodName"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "void",
"kind": "keyword"
}
],
"contextSpan": {
"start": 27,
"length": 16
}
},
"references": [
{
"textSpan": {
"start": 27,
"length": 7
},
"fileName": "/tests/cases/fourslash/referencesForInheritedProperties.ts",
"contextSpan": {
"start": 27,
"length": 16
},
"isWriteAccess": false,
"isDefinition": false
}
]
},
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/referencesForInheritedProperties.ts",
"kind": "method",
"name": "(method) interface2.doStuff(): void",
"textSpan": {
"start": 93,
"length": 7
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "method",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "interface2",
"kind": "interfaceName"
},
{
"text": ".",
"kind": "punctuation"
},
{
"text": "doStuff",
"kind": "methodName"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "void",
"kind": "keyword"
}
],
"contextSpan": {
"start": 93,
"length": 16
}
},
"references": [
{
"textSpan": {
"start": 93,
"length": 7
},
"fileName": "/tests/cases/fourslash/referencesForInheritedProperties.ts",
"contextSpan": {
"start": 93,
"length": 16
},
"isWriteAccess": false,
"isDefinition": true
}
]
},
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/referencesForInheritedProperties.ts",
"kind": "method",
"name": "(method) class1.doStuff(): void",
"textSpan": {
"start": 154,
"length": 7
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "method",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "class1",
"kind": "className"
},
{
"text": ".",
"kind": "punctuation"
},
{
"text": "doStuff",
"kind": "methodName"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "void",
"kind": "keyword"
}
],
"contextSpan": {
"start": 154,
"length": 18
}
},
"references": [
{
"textSpan": {
"start": 154,
"length": 7
},
"fileName": "/tests/cases/fourslash/referencesForInheritedProperties.ts",
"contextSpan": {
"start": 154,
"length": 18
},
"isWriteAccess": true,
"isDefinition": false
},
{
"textSpan": {
"start": 227,
"length": 7
},
"fileName": "/tests/cases/fourslash/referencesForInheritedProperties.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
}
]
// === /tests/cases/fourslash/referencesForInheritedProperties.ts ===
// interface interface1 {
// [|doStuff|](): void;
// }
//
// interface interface2 extends interface1{
// [|doStuff|](): void;
// }
//
// class class1 implements interface2 {
// /*FIND ALL REFS*/[|doStuff|]() {
//
// }
// }
//
// class class2 extends class1 {
//
// }
//
// var v: class2;
// v.[|doStuff|]();
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/referencesForInheritedProperties.ts",
"kind": "method",
"name": "(method) interface1.doStuff(): void",
"textSpan": {
"start": 27,
"length": 7
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "method",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "interface1",
"kind": "interfaceName"
},
{
"text": ".",
"kind": "punctuation"
},
{
"text": "doStuff",
"kind": "methodName"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "void",
"kind": "keyword"
}
],
"contextSpan": {
"start": 27,
"length": 16
}
},
"references": [
{
"textSpan": {
"start": 27,
"length": 7
},
"fileName": "/tests/cases/fourslash/referencesForInheritedProperties.ts",
"contextSpan": {
"start": 27,
"length": 16
},
"isWriteAccess": false,
"isDefinition": false
}
]
},
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/referencesForInheritedProperties.ts",
"kind": "method",
"name": "(method) interface2.doStuff(): void",
"textSpan": {
"start": 93,
"length": 7
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "method",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "interface2",
"kind": "interfaceName"
},
{
"text": ".",
"kind": "punctuation"
},
{
"text": "doStuff",
"kind": "methodName"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "void",
"kind": "keyword"
}
],
"contextSpan": {
"start": 93,
"length": 16
}
},
"references": [
{
"textSpan": {
"start": 93,
"length": 7
},
"fileName": "/tests/cases/fourslash/referencesForInheritedProperties.ts",
"contextSpan": {
"start": 93,
"length": 16
},
"isWriteAccess": false,
"isDefinition": false
}
]
},
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/referencesForInheritedProperties.ts",
"kind": "method",
"name": "(method) class1.doStuff(): void",
"textSpan": {
"start": 154,
"length": 7
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "method",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "class1",
"kind": "className"
},
{
"text": ".",
"kind": "punctuation"
},
{
"text": "doStuff",
"kind": "methodName"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "void",
"kind": "keyword"
}
],
"contextSpan": {
"start": 154,
"length": 18
}
},
"references": [
{
"textSpan": {
"start": 154,
"length": 7
},
"fileName": "/tests/cases/fourslash/referencesForInheritedProperties.ts",
"contextSpan": {
"start": 154,
"length": 18
},
"isWriteAccess": true,
"isDefinition": true
},
{
"textSpan": {
"start": 227,
"length": 7
},
"fileName": "/tests/cases/fourslash/referencesForInheritedProperties.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
}
]
// === /tests/cases/fourslash/referencesForInheritedProperties.ts ===
// interface interface1 {
// [|doStuff|](): void;
// }
//
// interface interface2 extends interface1{
// [|doStuff|](): void;
// }
//
// class class1 implements interface2 {
// [|doStuff|]() {
//
// }
// }
//
// class class2 extends class1 {
//
// }
//
// var v: class2;
// v./*FIND ALL REFS*/[|doStuff|]();
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/referencesForInheritedProperties.ts",
"kind": "method",
"name": "(method) interface1.doStuff(): void",
"textSpan": {
"start": 27,
"length": 7
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "method",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "interface1",
"kind": "interfaceName"
},
{
"text": ".",
"kind": "punctuation"
},
{
"text": "doStuff",
"kind": "methodName"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "void",
"kind": "keyword"
}
],
"contextSpan": {
"start": 27,
"length": 16
}
},
"references": [
{
"textSpan": {
"start": 27,
"length": 7
},
"fileName": "/tests/cases/fourslash/referencesForInheritedProperties.ts",
"contextSpan": {
"start": 27,
"length": 16
},
"isWriteAccess": false,
"isDefinition": false
}
]
},
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/referencesForInheritedProperties.ts",
"kind": "method",
"name": "(method) interface2.doStuff(): void",
"textSpan": {
"start": 93,
"length": 7
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "method",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "interface2",
"kind": "interfaceName"
},
{
"text": ".",
"kind": "punctuation"
},
{
"text": "doStuff",
"kind": "methodName"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "void",
"kind": "keyword"
}
],
"contextSpan": {
"start": 93,
"length": 16
}
},
"references": [
{
"textSpan": {
"start": 93,
"length": 7
},
"fileName": "/tests/cases/fourslash/referencesForInheritedProperties.ts",
"contextSpan": {
"start": 93,
"length": 16
},
"isWriteAccess": false,
"isDefinition": false
}
]
},
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/referencesForInheritedProperties.ts",
"kind": "method",
"name": "(method) class1.doStuff(): void",
"textSpan": {
"start": 154,
"length": 7
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "method",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "class1",
"kind": "className"
},
{
"text": ".",
"kind": "punctuation"
},
{
"text": "doStuff",
"kind": "methodName"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "void",
"kind": "keyword"
}
],
"contextSpan": {
"start": 154,
"length": 18
}
},
"references": [
{
"textSpan": {
"start": 154,
"length": 7
},
"fileName": "/tests/cases/fourslash/referencesForInheritedProperties.ts",
"contextSpan": {
"start": 154,
"length": 18
},
"isWriteAccess": true,
"isDefinition": true
},
{
"textSpan": {
"start": 227,
"length": 7
},
"fileName": "/tests/cases/fourslash/referencesForInheritedProperties.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
}
]