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

1343 lines
27 KiB
Plaintext

// === /tests/cases/fourslash/referencesForClassMembersExtendingGenericClass.ts ===
// class Base<T> {
// /*FIND ALL REFS*/[|a|]: this;
// method<U>(a?:T, b?:U): this { }
// }
// class MyClass extends Base<number> {
// [|a|];
// method() { }
// }
//
// var c: MyClass;
// c.[|a|];
// c.method();
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/referencesForClassMembersExtendingGenericClass.ts",
"kind": "property",
"name": "(property) Base<T>.a: this",
"textSpan": {
"start": 20,
"length": 1
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "property",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "Base",
"kind": "className"
},
{
"text": "<",
"kind": "punctuation"
},
{
"text": "T",
"kind": "typeParameterName"
},
{
"text": ">",
"kind": "punctuation"
},
{
"text": ".",
"kind": "punctuation"
},
{
"text": "a",
"kind": "propertyName"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "this",
"kind": "keyword"
}
],
"contextSpan": {
"start": 20,
"length": 8
}
},
"references": [
{
"textSpan": {
"start": 20,
"length": 1
},
"fileName": "/tests/cases/fourslash/referencesForClassMembersExtendingGenericClass.ts",
"contextSpan": {
"start": 20,
"length": 8
},
"isWriteAccess": false,
"isDefinition": true
}
]
},
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/referencesForClassMembersExtendingGenericClass.ts",
"kind": "property",
"name": "(property) MyClass.a: any",
"textSpan": {
"start": 108,
"length": 1
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "property",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "MyClass",
"kind": "className"
},
{
"text": ".",
"kind": "punctuation"
},
{
"text": "a",
"kind": "propertyName"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "any",
"kind": "keyword"
}
],
"contextSpan": {
"start": 108,
"length": 2
}
},
"references": [
{
"textSpan": {
"start": 108,
"length": 1
},
"fileName": "/tests/cases/fourslash/referencesForClassMembersExtendingGenericClass.ts",
"contextSpan": {
"start": 108,
"length": 2
},
"isWriteAccess": false,
"isDefinition": false
},
{
"textSpan": {
"start": 149,
"length": 1
},
"fileName": "/tests/cases/fourslash/referencesForClassMembersExtendingGenericClass.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
}
]
// === /tests/cases/fourslash/referencesForClassMembersExtendingGenericClass.ts ===
// class Base<T> {
// [|a|]: this;
// method<U>(a?:T, b?:U): this { }
// }
// class MyClass extends Base<number> {
// /*FIND ALL REFS*/[|a|];
// method() { }
// }
//
// var c: MyClass;
// c.[|a|];
// c.method();
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/referencesForClassMembersExtendingGenericClass.ts",
"kind": "property",
"name": "(property) Base<T>.a: this",
"textSpan": {
"start": 20,
"length": 1
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "property",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "Base",
"kind": "className"
},
{
"text": "<",
"kind": "punctuation"
},
{
"text": "T",
"kind": "typeParameterName"
},
{
"text": ">",
"kind": "punctuation"
},
{
"text": ".",
"kind": "punctuation"
},
{
"text": "a",
"kind": "propertyName"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "this",
"kind": "keyword"
}
],
"contextSpan": {
"start": 20,
"length": 8
}
},
"references": [
{
"textSpan": {
"start": 20,
"length": 1
},
"fileName": "/tests/cases/fourslash/referencesForClassMembersExtendingGenericClass.ts",
"contextSpan": {
"start": 20,
"length": 8
},
"isWriteAccess": false,
"isDefinition": false
}
]
},
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/referencesForClassMembersExtendingGenericClass.ts",
"kind": "property",
"name": "(property) MyClass.a: any",
"textSpan": {
"start": 108,
"length": 1
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "property",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "MyClass",
"kind": "className"
},
{
"text": ".",
"kind": "punctuation"
},
{
"text": "a",
"kind": "propertyName"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "any",
"kind": "keyword"
}
],
"contextSpan": {
"start": 108,
"length": 2
}
},
"references": [
{
"textSpan": {
"start": 108,
"length": 1
},
"fileName": "/tests/cases/fourslash/referencesForClassMembersExtendingGenericClass.ts",
"contextSpan": {
"start": 108,
"length": 2
},
"isWriteAccess": false,
"isDefinition": true
},
{
"textSpan": {
"start": 149,
"length": 1
},
"fileName": "/tests/cases/fourslash/referencesForClassMembersExtendingGenericClass.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
}
]
// === /tests/cases/fourslash/referencesForClassMembersExtendingGenericClass.ts ===
// class Base<T> {
// [|a|]: this;
// method<U>(a?:T, b?:U): this { }
// }
// class MyClass extends Base<number> {
// [|a|];
// method() { }
// }
//
// var c: MyClass;
// c./*FIND ALL REFS*/[|a|];
// c.method();
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/referencesForClassMembersExtendingGenericClass.ts",
"kind": "property",
"name": "(property) Base<T>.a: this",
"textSpan": {
"start": 20,
"length": 1
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "property",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "Base",
"kind": "className"
},
{
"text": "<",
"kind": "punctuation"
},
{
"text": "T",
"kind": "typeParameterName"
},
{
"text": ">",
"kind": "punctuation"
},
{
"text": ".",
"kind": "punctuation"
},
{
"text": "a",
"kind": "propertyName"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "this",
"kind": "keyword"
}
],
"contextSpan": {
"start": 20,
"length": 8
}
},
"references": [
{
"textSpan": {
"start": 20,
"length": 1
},
"fileName": "/tests/cases/fourslash/referencesForClassMembersExtendingGenericClass.ts",
"contextSpan": {
"start": 20,
"length": 8
},
"isWriteAccess": false,
"isDefinition": false
}
]
},
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/referencesForClassMembersExtendingGenericClass.ts",
"kind": "property",
"name": "(property) MyClass.a: any",
"textSpan": {
"start": 108,
"length": 1
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "property",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "MyClass",
"kind": "className"
},
{
"text": ".",
"kind": "punctuation"
},
{
"text": "a",
"kind": "propertyName"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "any",
"kind": "keyword"
}
],
"contextSpan": {
"start": 108,
"length": 2
}
},
"references": [
{
"textSpan": {
"start": 108,
"length": 1
},
"fileName": "/tests/cases/fourslash/referencesForClassMembersExtendingGenericClass.ts",
"contextSpan": {
"start": 108,
"length": 2
},
"isWriteAccess": false,
"isDefinition": true
},
{
"textSpan": {
"start": 149,
"length": 1
},
"fileName": "/tests/cases/fourslash/referencesForClassMembersExtendingGenericClass.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
}
]
// === /tests/cases/fourslash/referencesForClassMembersExtendingGenericClass.ts ===
// class Base<T> {
// a: this;
// /*FIND ALL REFS*/[|method|]<U>(a?:T, b?:U): this { }
// }
// class MyClass extends Base<number> {
// a;
// [|method|]() { }
// }
//
// var c: MyClass;
// c.a;
// c.[|method|]();
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/referencesForClassMembersExtendingGenericClass.ts",
"kind": "method",
"name": "(method) Base<T>.method<U>(a?: T, b?: U): this",
"textSpan": {
"start": 33,
"length": 6
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "method",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "Base",
"kind": "className"
},
{
"text": "<",
"kind": "punctuation"
},
{
"text": "T",
"kind": "typeParameterName"
},
{
"text": ">",
"kind": "punctuation"
},
{
"text": ".",
"kind": "punctuation"
},
{
"text": "method",
"kind": "methodName"
},
{
"text": "<",
"kind": "punctuation"
},
{
"text": "U",
"kind": "typeParameterName"
},
{
"text": ">",
"kind": "punctuation"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": "a",
"kind": "parameterName"
},
{
"text": "?",
"kind": "punctuation"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "T",
"kind": "typeParameterName"
},
{
"text": ",",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "b",
"kind": "parameterName"
},
{
"text": "?",
"kind": "punctuation"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "U",
"kind": "typeParameterName"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "this",
"kind": "keyword"
}
],
"contextSpan": {
"start": 33,
"length": 31
}
},
"references": [
{
"textSpan": {
"start": 33,
"length": 6
},
"fileName": "/tests/cases/fourslash/referencesForClassMembersExtendingGenericClass.ts",
"contextSpan": {
"start": 33,
"length": 31
},
"isWriteAccess": true,
"isDefinition": true
}
]
},
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/referencesForClassMembersExtendingGenericClass.ts",
"kind": "method",
"name": "(method) MyClass.method(): void",
"textSpan": {
"start": 115,
"length": 6
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "method",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "MyClass",
"kind": "className"
},
{
"text": ".",
"kind": "punctuation"
},
{
"text": "method",
"kind": "methodName"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "void",
"kind": "keyword"
}
],
"contextSpan": {
"start": 115,
"length": 12
}
},
"references": [
{
"textSpan": {
"start": 115,
"length": 6
},
"fileName": "/tests/cases/fourslash/referencesForClassMembersExtendingGenericClass.ts",
"contextSpan": {
"start": 115,
"length": 12
},
"isWriteAccess": true,
"isDefinition": false
},
{
"textSpan": {
"start": 154,
"length": 6
},
"fileName": "/tests/cases/fourslash/referencesForClassMembersExtendingGenericClass.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
}
]
// === /tests/cases/fourslash/referencesForClassMembersExtendingGenericClass.ts ===
// class Base<T> {
// a: this;
// [|method|]<U>(a?:T, b?:U): this { }
// }
// class MyClass extends Base<number> {
// a;
// /*FIND ALL REFS*/[|method|]() { }
// }
//
// var c: MyClass;
// c.a;
// c.[|method|]();
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/referencesForClassMembersExtendingGenericClass.ts",
"kind": "method",
"name": "(method) Base<T>.method<U>(a?: T, b?: U): this",
"textSpan": {
"start": 33,
"length": 6
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "method",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "Base",
"kind": "className"
},
{
"text": "<",
"kind": "punctuation"
},
{
"text": "T",
"kind": "typeParameterName"
},
{
"text": ">",
"kind": "punctuation"
},
{
"text": ".",
"kind": "punctuation"
},
{
"text": "method",
"kind": "methodName"
},
{
"text": "<",
"kind": "punctuation"
},
{
"text": "U",
"kind": "typeParameterName"
},
{
"text": ">",
"kind": "punctuation"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": "a",
"kind": "parameterName"
},
{
"text": "?",
"kind": "punctuation"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "T",
"kind": "typeParameterName"
},
{
"text": ",",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "b",
"kind": "parameterName"
},
{
"text": "?",
"kind": "punctuation"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "U",
"kind": "typeParameterName"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "this",
"kind": "keyword"
}
],
"contextSpan": {
"start": 33,
"length": 31
}
},
"references": [
{
"textSpan": {
"start": 33,
"length": 6
},
"fileName": "/tests/cases/fourslash/referencesForClassMembersExtendingGenericClass.ts",
"contextSpan": {
"start": 33,
"length": 31
},
"isWriteAccess": true,
"isDefinition": false
}
]
},
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/referencesForClassMembersExtendingGenericClass.ts",
"kind": "method",
"name": "(method) MyClass.method(): void",
"textSpan": {
"start": 115,
"length": 6
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "method",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "MyClass",
"kind": "className"
},
{
"text": ".",
"kind": "punctuation"
},
{
"text": "method",
"kind": "methodName"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "void",
"kind": "keyword"
}
],
"contextSpan": {
"start": 115,
"length": 12
}
},
"references": [
{
"textSpan": {
"start": 115,
"length": 6
},
"fileName": "/tests/cases/fourslash/referencesForClassMembersExtendingGenericClass.ts",
"contextSpan": {
"start": 115,
"length": 12
},
"isWriteAccess": true,
"isDefinition": true
},
{
"textSpan": {
"start": 154,
"length": 6
},
"fileName": "/tests/cases/fourslash/referencesForClassMembersExtendingGenericClass.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
}
]
// === /tests/cases/fourslash/referencesForClassMembersExtendingGenericClass.ts ===
// class Base<T> {
// a: this;
// [|method|]<U>(a?:T, b?:U): this { }
// }
// class MyClass extends Base<number> {
// a;
// [|method|]() { }
// }
//
// var c: MyClass;
// c.a;
// c./*FIND ALL REFS*/[|method|]();
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/referencesForClassMembersExtendingGenericClass.ts",
"kind": "method",
"name": "(method) Base<T>.method<U>(a?: T, b?: U): this",
"textSpan": {
"start": 33,
"length": 6
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "method",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "Base",
"kind": "className"
},
{
"text": "<",
"kind": "punctuation"
},
{
"text": "T",
"kind": "typeParameterName"
},
{
"text": ">",
"kind": "punctuation"
},
{
"text": ".",
"kind": "punctuation"
},
{
"text": "method",
"kind": "methodName"
},
{
"text": "<",
"kind": "punctuation"
},
{
"text": "U",
"kind": "typeParameterName"
},
{
"text": ">",
"kind": "punctuation"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": "a",
"kind": "parameterName"
},
{
"text": "?",
"kind": "punctuation"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "T",
"kind": "typeParameterName"
},
{
"text": ",",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "b",
"kind": "parameterName"
},
{
"text": "?",
"kind": "punctuation"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "U",
"kind": "typeParameterName"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "this",
"kind": "keyword"
}
],
"contextSpan": {
"start": 33,
"length": 31
}
},
"references": [
{
"textSpan": {
"start": 33,
"length": 6
},
"fileName": "/tests/cases/fourslash/referencesForClassMembersExtendingGenericClass.ts",
"contextSpan": {
"start": 33,
"length": 31
},
"isWriteAccess": true,
"isDefinition": false
}
]
},
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/referencesForClassMembersExtendingGenericClass.ts",
"kind": "method",
"name": "(method) MyClass.method(): void",
"textSpan": {
"start": 115,
"length": 6
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "method",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "MyClass",
"kind": "className"
},
{
"text": ".",
"kind": "punctuation"
},
{
"text": "method",
"kind": "methodName"
},
{
"text": "(",
"kind": "punctuation"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "void",
"kind": "keyword"
}
],
"contextSpan": {
"start": 115,
"length": 12
}
},
"references": [
{
"textSpan": {
"start": 115,
"length": 6
},
"fileName": "/tests/cases/fourslash/referencesForClassMembersExtendingGenericClass.ts",
"contextSpan": {
"start": 115,
"length": 12
},
"isWriteAccess": true,
"isDefinition": true
},
{
"textSpan": {
"start": 154,
"length": 6
},
"fileName": "/tests/cases/fourslash/referencesForClassMembersExtendingGenericClass.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
}
]