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

126 lines
2.9 KiB
Plaintext

// === /tests/cases/fourslash/file.tsx ===
// declare module JSX {
// interface Element { }
// interface IntrinsicElements {
// }
// interface ElementAttributesProperty { props; }
// }
// interface ClickableProps {
// children?: string;
// className?: string;
// }
// interface ButtonProps extends ClickableProps {
// onClick(event?: React.MouseEvent<HTMLButtonElement>): void;
// }
// interface LinkProps extends ClickableProps {
// /*FIND ALL REFS*/[|goTo|]: string;
// }
// declare function MainButton(buttonProps: ButtonProps): JSX.Element;
// declare function MainButton(linkProps: LinkProps): JSX.Element;
// declare function MainButton(props: ButtonProps | LinkProps): JSX.Element;
// let opt = <MainButton />;
// let opt = <MainButton children="chidlren" />;
// let opt = <MainButton onClick={()=>{}} />;
// let opt = <MainButton onClick={()=>{}} ignore-prop />;
// let opt = <MainButton [|goTo|]="goTo" />;
// let opt = <MainButton [|goTo|] />;
// let opt = <MainButton wrong />;
[
{
"definition": {
"containerKind": "",
"containerName": "",
"fileName": "/tests/cases/fourslash/file.tsx",
"kind": "property",
"name": "(property) LinkProps.goTo: string",
"textSpan": {
"start": 378,
"length": 4
},
"displayParts": [
{
"text": "(",
"kind": "punctuation"
},
{
"text": "property",
"kind": "text"
},
{
"text": ")",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "LinkProps",
"kind": "interfaceName"
},
{
"text": ".",
"kind": "punctuation"
},
{
"text": "goTo",
"kind": "propertyName"
},
{
"text": ":",
"kind": "punctuation"
},
{
"text": " ",
"kind": "space"
},
{
"text": "string",
"kind": "keyword"
}
],
"contextSpan": {
"start": 378,
"length": 13
}
},
"references": [
{
"textSpan": {
"start": 378,
"length": 4
},
"fileName": "/tests/cases/fourslash/file.tsx",
"contextSpan": {
"start": 378,
"length": 13
},
"isWriteAccess": false,
"isDefinition": true
},
{
"textSpan": {
"start": 792,
"length": 4
},
"fileName": "/tests/cases/fourslash/file.tsx",
"contextSpan": {
"start": 792,
"length": 11
},
"isWriteAccess": true,
"isDefinition": false
},
{
"textSpan": {
"start": 830,
"length": 4
},
"fileName": "/tests/cases/fourslash/file.tsx",
"isWriteAccess": true,
"isDefinition": false
}
]
}
]