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

1440 lines
29 KiB
Plaintext

// === /tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts ===
// class X{
// /*FIND ALL REFS*/[|foo|]:any
// }
//
// class Y extends X{
// static foo:any
// }
//
// class Z extends Y{
// static foo:any
// [|foo|]:any
// }
//
// const x = new X();
// const y = new Y();
// const z = new Z();
// x.[|foo|];
// y.[|foo|];
// z.[|foo|];
// Y.foo;
// Z.foo;
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts",
"kind": "property",
"name": "(property) X.foo: any",
"textSpan": {
"start": 10,
"length": 3
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "property",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "X",
"kind": "className"
},
{
"text": ".",
"kind": "punctuation"
},
{
"text": "foo",
"kind": "propertyName"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "any",
"kind": "keyword"
}
],
"contextSpan": {
"start": 10,
"length": 7
}
},
"references": [
{
"textSpan": {
"start": 10,
"length": 3
},
"fileName": "/tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts",
"contextSpan": {
"start": 10,
"length": 7
},
"isWriteAccess": false,
"isDefinition": true
},
{
"textSpan": {
"start": 165,
"length": 3
},
"fileName": "/tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts",
"isWriteAccess": false,
"isDefinition": false
},
{
"textSpan": {
"start": 172,
"length": 3
},
"fileName": "/tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
},
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts",
"kind": "property",
"name": "(property) Z.foo: any",
"textSpan": {
"start": 95,
"length": 3
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "property",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "Z",
"kind": "className"
},
{
"text": ".",
"kind": "punctuation"
},
{
"text": "foo",
"kind": "propertyName"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "any",
"kind": "keyword"
}
],
"contextSpan": {
"start": 95,
"length": 7
}
},
"references": [
{
"textSpan": {
"start": 95,
"length": 3
},
"fileName": "/tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts",
"contextSpan": {
"start": 95,
"length": 7
},
"isWriteAccess": false,
"isDefinition": false
},
{
"textSpan": {
"start": 179,
"length": 3
},
"fileName": "/tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
}
]
// === /tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts ===
// class X{
// foo:any
// }
//
// class Y extends X{
// static /*FIND ALL REFS*/[|foo|]:any
// }
//
// class Z extends Y{
// static foo:any
// foo:any
// }
//
// const x = new X();
// const y = new Y();
// const z = new Z();
// x.foo;
// y.foo;
// z.foo;
// Y.[|foo|];
// Z.foo;
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts",
"kind": "property",
"name": "(property) Y.foo: any",
"textSpan": {
"start": 48,
"length": 3
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "property",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "Y",
"kind": "className"
},
{
"text": ".",
"kind": "punctuation"
},
{
"text": "foo",
"kind": "propertyName"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "any",
"kind": "keyword"
}
],
"contextSpan": {
"start": 41,
"length": 14
}
},
"references": [
{
"textSpan": {
"start": 48,
"length": 3
},
"fileName": "/tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts",
"contextSpan": {
"start": 41,
"length": 14
},
"isWriteAccess": false,
"isDefinition": true
},
{
"textSpan": {
"start": 186,
"length": 3
},
"fileName": "/tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
}
]
// === /tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts ===
// class X{
// foo:any
// }
//
// class Y extends X{
// static foo:any
// }
//
// class Z extends Y{
// static /*FIND ALL REFS*/[|foo|]:any
// foo:any
// }
//
// const x = new X();
// const y = new Y();
// const z = new Z();
// x.foo;
// y.foo;
// z.foo;
// Y.foo;
// Z.[|foo|];
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts",
"kind": "property",
"name": "(property) Z.foo: any",
"textSpan": {
"start": 86,
"length": 3
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "property",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "Z",
"kind": "className"
},
{
"text": ".",
"kind": "punctuation"
},
{
"text": "foo",
"kind": "propertyName"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "any",
"kind": "keyword"
}
],
"contextSpan": {
"start": 79,
"length": 14
}
},
"references": [
{
"textSpan": {
"start": 86,
"length": 3
},
"fileName": "/tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts",
"contextSpan": {
"start": 79,
"length": 14
},
"isWriteAccess": false,
"isDefinition": true
},
{
"textSpan": {
"start": 193,
"length": 3
},
"fileName": "/tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
}
]
// === /tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts ===
// class X{
// [|foo|]:any
// }
//
// class Y extends X{
// static foo:any
// }
//
// class Z extends Y{
// static foo:any
// /*FIND ALL REFS*/[|foo|]:any
// }
//
// const x = new X();
// const y = new Y();
// const z = new Z();
// x.[|foo|];
// y.[|foo|];
// z.[|foo|];
// Y.foo;
// Z.foo;
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts",
"kind": "property",
"name": "(property) X.foo: any",
"textSpan": {
"start": 10,
"length": 3
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "property",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "X",
"kind": "className"
},
{
"text": ".",
"kind": "punctuation"
},
{
"text": "foo",
"kind": "propertyName"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "any",
"kind": "keyword"
}
],
"contextSpan": {
"start": 10,
"length": 7
}
},
"references": [
{
"textSpan": {
"start": 10,
"length": 3
},
"fileName": "/tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts",
"contextSpan": {
"start": 10,
"length": 7
},
"isWriteAccess": false,
"isDefinition": false
},
{
"textSpan": {
"start": 165,
"length": 3
},
"fileName": "/tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts",
"isWriteAccess": false,
"isDefinition": false
},
{
"textSpan": {
"start": 172,
"length": 3
},
"fileName": "/tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
},
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts",
"kind": "property",
"name": "(property) Z.foo: any",
"textSpan": {
"start": 95,
"length": 3
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "property",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "Z",
"kind": "className"
},
{
"text": ".",
"kind": "punctuation"
},
{
"text": "foo",
"kind": "propertyName"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "any",
"kind": "keyword"
}
],
"contextSpan": {
"start": 95,
"length": 7
}
},
"references": [
{
"textSpan": {
"start": 95,
"length": 3
},
"fileName": "/tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts",
"contextSpan": {
"start": 95,
"length": 7
},
"isWriteAccess": false,
"isDefinition": true
},
{
"textSpan": {
"start": 179,
"length": 3
},
"fileName": "/tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
}
]
// === /tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts ===
// class X{
// [|foo|]:any
// }
//
// class Y extends X{
// static foo:any
// }
//
// class Z extends Y{
// static foo:any
// [|foo|]:any
// }
//
// const x = new X();
// const y = new Y();
// const z = new Z();
// x./*FIND ALL REFS*/[|foo|];
// y.[|foo|];
// z.[|foo|];
// Y.foo;
// Z.foo;
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts",
"kind": "property",
"name": "(property) X.foo: any",
"textSpan": {
"start": 10,
"length": 3
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "property",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "X",
"kind": "className"
},
{
"text": ".",
"kind": "punctuation"
},
{
"text": "foo",
"kind": "propertyName"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "any",
"kind": "keyword"
}
],
"contextSpan": {
"start": 10,
"length": 7
}
},
"references": [
{
"textSpan": {
"start": 10,
"length": 3
},
"fileName": "/tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts",
"contextSpan": {
"start": 10,
"length": 7
},
"isWriteAccess": false,
"isDefinition": true
},
{
"textSpan": {
"start": 165,
"length": 3
},
"fileName": "/tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts",
"isWriteAccess": false,
"isDefinition": false
},
{
"textSpan": {
"start": 172,
"length": 3
},
"fileName": "/tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
},
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts",
"kind": "property",
"name": "(property) Z.foo: any",
"textSpan": {
"start": 95,
"length": 3
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "property",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "Z",
"kind": "className"
},
{
"text": ".",
"kind": "punctuation"
},
{
"text": "foo",
"kind": "propertyName"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "any",
"kind": "keyword"
}
],
"contextSpan": {
"start": 95,
"length": 7
}
},
"references": [
{
"textSpan": {
"start": 95,
"length": 3
},
"fileName": "/tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts",
"contextSpan": {
"start": 95,
"length": 7
},
"isWriteAccess": false,
"isDefinition": false
},
{
"textSpan": {
"start": 179,
"length": 3
},
"fileName": "/tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
}
]
// === /tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts ===
// class X{
// [|foo|]:any
// }
//
// class Y extends X{
// static foo:any
// }
//
// class Z extends Y{
// static foo:any
// [|foo|]:any
// }
//
// const x = new X();
// const y = new Y();
// const z = new Z();
// x.[|foo|];
// y./*FIND ALL REFS*/[|foo|];
// z.[|foo|];
// Y.foo;
// Z.foo;
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts",
"kind": "property",
"name": "(property) X.foo: any",
"textSpan": {
"start": 10,
"length": 3
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "property",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "X",
"kind": "className"
},
{
"text": ".",
"kind": "punctuation"
},
{
"text": "foo",
"kind": "propertyName"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "any",
"kind": "keyword"
}
],
"contextSpan": {
"start": 10,
"length": 7
}
},
"references": [
{
"textSpan": {
"start": 10,
"length": 3
},
"fileName": "/tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts",
"contextSpan": {
"start": 10,
"length": 7
},
"isWriteAccess": false,
"isDefinition": true
},
{
"textSpan": {
"start": 165,
"length": 3
},
"fileName": "/tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts",
"isWriteAccess": false,
"isDefinition": false
},
{
"textSpan": {
"start": 172,
"length": 3
},
"fileName": "/tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
},
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts",
"kind": "property",
"name": "(property) Z.foo: any",
"textSpan": {
"start": 95,
"length": 3
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "property",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "Z",
"kind": "className"
},
{
"text": ".",
"kind": "punctuation"
},
{
"text": "foo",
"kind": "propertyName"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "any",
"kind": "keyword"
}
],
"contextSpan": {
"start": 95,
"length": 7
}
},
"references": [
{
"textSpan": {
"start": 95,
"length": 3
},
"fileName": "/tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts",
"contextSpan": {
"start": 95,
"length": 7
},
"isWriteAccess": false,
"isDefinition": false
},
{
"textSpan": {
"start": 179,
"length": 3
},
"fileName": "/tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
}
]
// === /tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts ===
// class X{
// [|foo|]:any
// }
//
// class Y extends X{
// static foo:any
// }
//
// class Z extends Y{
// static foo:any
// [|foo|]:any
// }
//
// const x = new X();
// const y = new Y();
// const z = new Z();
// x.[|foo|];
// y.[|foo|];
// z./*FIND ALL REFS*/[|foo|];
// Y.foo;
// Z.foo;
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts",
"kind": "property",
"name": "(property) X.foo: any",
"textSpan": {
"start": 10,
"length": 3
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "property",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "X",
"kind": "className"
},
{
"text": ".",
"kind": "punctuation"
},
{
"text": "foo",
"kind": "propertyName"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "any",
"kind": "keyword"
}
],
"contextSpan": {
"start": 10,
"length": 7
}
},
"references": [
{
"textSpan": {
"start": 10,
"length": 3
},
"fileName": "/tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts",
"contextSpan": {
"start": 10,
"length": 7
},
"isWriteAccess": false,
"isDefinition": false
},
{
"textSpan": {
"start": 165,
"length": 3
},
"fileName": "/tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts",
"isWriteAccess": false,
"isDefinition": false
},
{
"textSpan": {
"start": 172,
"length": 3
},
"fileName": "/tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
},
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts",
"kind": "property",
"name": "(property) Z.foo: any",
"textSpan": {
"start": 95,
"length": 3
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "property",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "Z",
"kind": "className"
},
{
"text": ".",
"kind": "punctuation"
},
{
"text": "foo",
"kind": "propertyName"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "any",
"kind": "keyword"
}
],
"contextSpan": {
"start": 95,
"length": 7
}
},
"references": [
{
"textSpan": {
"start": 95,
"length": 3
},
"fileName": "/tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts",
"contextSpan": {
"start": 95,
"length": 7
},
"isWriteAccess": false,
"isDefinition": true
},
{
"textSpan": {
"start": 179,
"length": 3
},
"fileName": "/tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
}
]
// === /tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts ===
// class X{
// foo:any
// }
//
// class Y extends X{
// static [|foo|]:any
// }
//
// class Z extends Y{
// static foo:any
// foo:any
// }
//
// const x = new X();
// const y = new Y();
// const z = new Z();
// x.foo;
// y.foo;
// z.foo;
// Y./*FIND ALL REFS*/[|foo|];
// Z.foo;
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts",
"kind": "property",
"name": "(property) Y.foo: any",
"textSpan": {
"start": 48,
"length": 3
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "property",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "Y",
"kind": "className"
},
{
"text": ".",
"kind": "punctuation"
},
{
"text": "foo",
"kind": "propertyName"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "any",
"kind": "keyword"
}
],
"contextSpan": {
"start": 41,
"length": 14
}
},
"references": [
{
"textSpan": {
"start": 48,
"length": 3
},
"fileName": "/tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts",
"contextSpan": {
"start": 41,
"length": 14
},
"isWriteAccess": false,
"isDefinition": true
},
{
"textSpan": {
"start": 186,
"length": 3
},
"fileName": "/tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
}
]
// === /tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts ===
// class X{
// foo:any
// }
//
// class Y extends X{
// static foo:any
// }
//
// class Z extends Y{
// static [|foo|]:any
// foo:any
// }
//
// const x = new X();
// const y = new Y();
// const z = new Z();
// x.foo;
// y.foo;
// z.foo;
// Y.foo;
// Z./*FIND ALL REFS*/[|foo|];
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts",
"kind": "property",
"name": "(property) Z.foo: any",
"textSpan": {
"start": 86,
"length": 3
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "property",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "Z",
"kind": "className"
},
{
"text": ".",
"kind": "punctuation"
},
{
"text": "foo",
"kind": "propertyName"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "any",
"kind": "keyword"
}
],
"contextSpan": {
"start": 79,
"length": 14
}
},
"references": [
{
"textSpan": {
"start": 86,
"length": 3
},
"fileName": "/tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts",
"contextSpan": {
"start": 79,
"length": 14
},
"isWriteAccess": false,
"isDefinition": true
},
{
"textSpan": {
"start": 193,
"length": 3
},
"fileName": "/tests/cases/fourslash/findAllRefsForStaticInstancePropertyInheritance.ts",
"isWriteAccess": false,
"isDefinition": false
}
]
}
]