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

71 lines
1.4 KiB
Plaintext

// === /b.ts ===
// /// <reference types="[|foo|]" />
// import { x } from "/*FIND ALL REFS*/[|foo|]";
// declare module "[|foo|]" {}
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/node_modules/foo/index.d.ts",
"kind": "module",
"name": "module \"/node_modules/foo/index\"",
"textSpan": {
"start": 0,
"length": 19
},
"displayParts": [
{
"text": "module",
"kind": "keyword"
},
{
"text": " ",
"kind": "space"
},
{
"text": "\"/node_modules/foo/index\"",
"kind": "stringLiteral"
}
]
},
"references": [
{
"textSpan": {
"start": 22,
"length": 3
},
"fileName": "/b.ts",
"isWriteAccess": false,
"isDefinition": false
},
{
"textSpan": {
"start": 49,
"length": 3
},
"fileName": "/b.ts",
"contextSpan": {
"start": 30,
"length": 24
},
"isWriteAccess": false,
"isDefinition": false
},
{
"textSpan": {
"start": 71,
"length": 3
},
"fileName": "/b.ts",
"contextSpan": {
"start": 55,
"length": 23
},
"isWriteAccess": true,
"isDefinition": true
}
]
}
]