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

774 lines
17 KiB
Plaintext

// === /tests/cases/fourslash/findAllRefsObjectBindingElementPropertyName06.ts ===
// interface I {
// /*FIND ALL REFS*/[|property1|]: number;
// property2: string;
// }
//
// var elems: I[];
// for (let { [|property1|]: p } of elems) {
// }
// for (let { [|property1|] } of elems) {
// }
// for (var { [|property1|]: p1 } of elems) {
// }
// var p2;
// for ({ [|property1|] : p2 } of elems) {
// }
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/findAllRefsObjectBindingElementPropertyName06.ts",
"kind": "property",
"name": "(property) I.property1: number",
"textSpan": {
"start": 18,
"length": 9
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "property",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "I",
"kind": "interfaceName"
},
{
"text": ".",
"kind": "punctuation"
},
{
"text": "property1",
"kind": "propertyName"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "number",
"kind": "keyword"
}
],
"contextSpan": {
"start": 18,
"length": 18
}
},
"references": [
{
"textSpan": {
"start": 18,
"length": 9
},
"fileName": "/tests/cases/fourslash/findAllRefsObjectBindingElementPropertyName06.ts",
"contextSpan": {
"start": 18,
"length": 18
},
"isWriteAccess": false,
"isDefinition": true
},
{
"textSpan": {
"start": 90,
"length": 9
},
"fileName": "/tests/cases/fourslash/findAllRefsObjectBindingElementPropertyName06.ts",
"contextSpan": {
"start": 84,
"length": 29
},
"isWriteAccess": false,
"isDefinition": false
},
{
"textSpan": {
"start": 130,
"length": 9
},
"fileName": "/tests/cases/fourslash/findAllRefsObjectBindingElementPropertyName06.ts",
"contextSpan": {
"start": 124,
"length": 26
},
"isWriteAccess": true,
"isDefinition": false
},
{
"textSpan": {
"start": 167,
"length": 9
},
"fileName": "/tests/cases/fourslash/findAllRefsObjectBindingElementPropertyName06.ts",
"contextSpan": {
"start": 161,
"length": 30
},
"isWriteAccess": false,
"isDefinition": false
},
{
"textSpan": {
"start": 212,
"length": 9
},
"fileName": "/tests/cases/fourslash/findAllRefsObjectBindingElementPropertyName06.ts",
"contextSpan": {
"start": 210,
"length": 27
},
"isWriteAccess": true,
"isDefinition": false
}
]
}
]
// === /tests/cases/fourslash/findAllRefsObjectBindingElementPropertyName06.ts ===
// interface I {
// [|property1|]: number;
// property2: string;
// }
//
// var elems: I[];
// for (let { /*FIND ALL REFS*/[|property1|]: p } of elems) {
// }
// for (let { [|property1|] } of elems) {
// }
// for (var { [|property1|]: p1 } of elems) {
// }
// var p2;
// for ({ [|property1|] : p2 } of elems) {
// }
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/findAllRefsObjectBindingElementPropertyName06.ts",
"kind": "property",
"name": "(property) I.property1: number",
"textSpan": {
"start": 18,
"length": 9
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "property",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "I",
"kind": "interfaceName"
},
{
"text": ".",
"kind": "punctuation"
},
{
"text": "property1",
"kind": "propertyName"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "number",
"kind": "keyword"
}
],
"contextSpan": {
"start": 18,
"length": 18
}
},
"references": [
{
"textSpan": {
"start": 18,
"length": 9
},
"fileName": "/tests/cases/fourslash/findAllRefsObjectBindingElementPropertyName06.ts",
"contextSpan": {
"start": 18,
"length": 18
},
"isWriteAccess": false,
"isDefinition": true
},
{
"textSpan": {
"start": 90,
"length": 9
},
"fileName": "/tests/cases/fourslash/findAllRefsObjectBindingElementPropertyName06.ts",
"contextSpan": {
"start": 84,
"length": 29
},
"isWriteAccess": false,
"isDefinition": false
},
{
"textSpan": {
"start": 130,
"length": 9
},
"fileName": "/tests/cases/fourslash/findAllRefsObjectBindingElementPropertyName06.ts",
"contextSpan": {
"start": 124,
"length": 26
},
"isWriteAccess": true,
"isDefinition": false
},
{
"textSpan": {
"start": 167,
"length": 9
},
"fileName": "/tests/cases/fourslash/findAllRefsObjectBindingElementPropertyName06.ts",
"contextSpan": {
"start": 161,
"length": 30
},
"isWriteAccess": false,
"isDefinition": false
},
{
"textSpan": {
"start": 212,
"length": 9
},
"fileName": "/tests/cases/fourslash/findAllRefsObjectBindingElementPropertyName06.ts",
"contextSpan": {
"start": 210,
"length": 27
},
"isWriteAccess": true,
"isDefinition": false
}
]
}
]
// === /tests/cases/fourslash/findAllRefsObjectBindingElementPropertyName06.ts ===
// interface I {
// [|property1|]: number;
// property2: string;
// }
//
// var elems: I[];
// for (let { [|property1|]: p } of elems) {
// }
// for (let { [|property1|] } of elems) {
// }
// for (var { /*FIND ALL REFS*/[|property1|]: p1 } of elems) {
// }
// var p2;
// for ({ [|property1|] : p2 } of elems) {
// }
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/findAllRefsObjectBindingElementPropertyName06.ts",
"kind": "property",
"name": "(property) I.property1: number",
"textSpan": {
"start": 18,
"length": 9
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "property",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "I",
"kind": "interfaceName"
},
{
"text": ".",
"kind": "punctuation"
},
{
"text": "property1",
"kind": "propertyName"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "number",
"kind": "keyword"
}
],
"contextSpan": {
"start": 18,
"length": 18
}
},
"references": [
{
"textSpan": {
"start": 18,
"length": 9
},
"fileName": "/tests/cases/fourslash/findAllRefsObjectBindingElementPropertyName06.ts",
"contextSpan": {
"start": 18,
"length": 18
},
"isWriteAccess": false,
"isDefinition": true
},
{
"textSpan": {
"start": 90,
"length": 9
},
"fileName": "/tests/cases/fourslash/findAllRefsObjectBindingElementPropertyName06.ts",
"contextSpan": {
"start": 84,
"length": 29
},
"isWriteAccess": false,
"isDefinition": false
},
{
"textSpan": {
"start": 130,
"length": 9
},
"fileName": "/tests/cases/fourslash/findAllRefsObjectBindingElementPropertyName06.ts",
"contextSpan": {
"start": 124,
"length": 26
},
"isWriteAccess": true,
"isDefinition": false
},
{
"textSpan": {
"start": 167,
"length": 9
},
"fileName": "/tests/cases/fourslash/findAllRefsObjectBindingElementPropertyName06.ts",
"contextSpan": {
"start": 161,
"length": 30
},
"isWriteAccess": false,
"isDefinition": false
},
{
"textSpan": {
"start": 212,
"length": 9
},
"fileName": "/tests/cases/fourslash/findAllRefsObjectBindingElementPropertyName06.ts",
"contextSpan": {
"start": 210,
"length": 27
},
"isWriteAccess": true,
"isDefinition": false
}
]
}
]
// === /tests/cases/fourslash/findAllRefsObjectBindingElementPropertyName06.ts ===
// interface I {
// [|property1|]: number;
// property2: string;
// }
//
// var elems: I[];
// for (let { [|property1|]: p } of elems) {
// }
// for (let { [|property1|] } of elems) {
// }
// for (var { [|property1|]: p1 } of elems) {
// }
// var p2;
// for ({ /*FIND ALL REFS*/[|property1|] : p2 } of elems) {
// }
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/findAllRefsObjectBindingElementPropertyName06.ts",
"kind": "property",
"name": "(property) I.property1: number",
"textSpan": {
"start": 18,
"length": 9
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "property",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "I",
"kind": "interfaceName"
},
{
"text": ".",
"kind": "punctuation"
},
{
"text": "property1",
"kind": "propertyName"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "number",
"kind": "keyword"
}
],
"contextSpan": {
"start": 18,
"length": 18
}
},
"references": [
{
"textSpan": {
"start": 18,
"length": 9
},
"fileName": "/tests/cases/fourslash/findAllRefsObjectBindingElementPropertyName06.ts",
"contextSpan": {
"start": 18,
"length": 18
},
"isWriteAccess": false,
"isDefinition": false
},
{
"textSpan": {
"start": 90,
"length": 9
},
"fileName": "/tests/cases/fourslash/findAllRefsObjectBindingElementPropertyName06.ts",
"contextSpan": {
"start": 84,
"length": 29
},
"isWriteAccess": false,
"isDefinition": false
},
{
"textSpan": {
"start": 130,
"length": 9
},
"fileName": "/tests/cases/fourslash/findAllRefsObjectBindingElementPropertyName06.ts",
"contextSpan": {
"start": 124,
"length": 26
},
"isWriteAccess": true,
"isDefinition": false
},
{
"textSpan": {
"start": 167,
"length": 9
},
"fileName": "/tests/cases/fourslash/findAllRefsObjectBindingElementPropertyName06.ts",
"contextSpan": {
"start": 161,
"length": 30
},
"isWriteAccess": false,
"isDefinition": false
},
{
"textSpan": {
"start": 212,
"length": 9
},
"fileName": "/tests/cases/fourslash/findAllRefsObjectBindingElementPropertyName06.ts",
"contextSpan": {
"start": 210,
"length": 27
},
"isWriteAccess": true,
"isDefinition": true
}
]
}
]
// === /tests/cases/fourslash/findAllRefsObjectBindingElementPropertyName06.ts ===
// interface I {
// [|property1|]: number;
// property2: string;
// }
//
// var elems: I[];
// for (let { [|property1|]: p } of elems) {
// }
// for (let { /*FIND ALL REFS*/[|property1|] } of elems) {
// }
// for (var { [|property1|]: p1 } of elems) {
// }
// var p2;
// for ({ [|property1|] : p2 } of elems) {
// }
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/findAllRefsObjectBindingElementPropertyName06.ts",
"kind": "property",
"name": "(property) I.property1: number",
"textSpan": {
"start": 18,
"length": 9
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "property",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "I",
"kind": "interfaceName"
},
{
"text": ".",
"kind": "punctuation"
},
{
"text": "property1",
"kind": "propertyName"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "number",
"kind": "keyword"
}
],
"contextSpan": {
"start": 18,
"length": 18
}
},
"references": [
{
"textSpan": {
"start": 18,
"length": 9
},
"fileName": "/tests/cases/fourslash/findAllRefsObjectBindingElementPropertyName06.ts",
"contextSpan": {
"start": 18,
"length": 18
},
"isWriteAccess": false,
"isDefinition": false
},
{
"textSpan": {
"start": 90,
"length": 9
},
"fileName": "/tests/cases/fourslash/findAllRefsObjectBindingElementPropertyName06.ts",
"contextSpan": {
"start": 84,
"length": 29
},
"isWriteAccess": false,
"isDefinition": false
},
{
"textSpan": {
"start": 167,
"length": 9
},
"fileName": "/tests/cases/fourslash/findAllRefsObjectBindingElementPropertyName06.ts",
"contextSpan": {
"start": 161,
"length": 30
},
"isWriteAccess": false,
"isDefinition": false
},
{
"textSpan": {
"start": 212,
"length": 9
},
"fileName": "/tests/cases/fourslash/findAllRefsObjectBindingElementPropertyName06.ts",
"contextSpan": {
"start": 210,
"length": 27
},
"isWriteAccess": true,
"isDefinition": false
}
]
},
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/findAllRefsObjectBindingElementPropertyName06.ts",
"kind": "let",
"name": "let property1: number",
"textSpan": {
"start": 130,
"length": 9
},
"displayParts": [
{
"text": "let",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "property1",
"kind": "localName"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "number",
"kind": "keyword"
}
],
"contextSpan": {
"start": 124,
"length": 26
}
},
"references": [
{
"textSpan": {
"start": 130,
"length": 9
},
"fileName": "/tests/cases/fourslash/findAllRefsObjectBindingElementPropertyName06.ts",
"contextSpan": {
"start": 124,
"length": 26
},
"isWriteAccess": true,
"isDefinition": true
}
]
}
]