-
Notifications
You must be signed in to change notification settings - Fork 12.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve references search and quick info on properties with type errors within nullable contextual types #61383
Open
Andarist
wants to merge
1
commit into
microsoft:main
Choose a base branch
from
Andarist:fix/improve-reference-search-on-error-positions
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
121 changes: 121 additions & 0 deletions
121
tests/baselines/reference/findAllRefsFromContextualUnionType1.baseline.jsonc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
// === findAllReferences === | ||
// === /tests/cases/fourslash/findAllRefsFromContextualUnionType1.ts === | ||
// function test1(arg: { <|[|prop|]: "foo"|> }) {} | ||
// test1({ /*FIND ALL REFS*/<|[|{| isWriteAccess: true, isDefinition: true |}prop|]: "bar"|> }); | ||
// | ||
// function test2(arg: { prop: "foo" } | undefined) {} | ||
// test2({ prop: "bar" }); | ||
|
||
// === Definitions === | ||
// === /tests/cases/fourslash/findAllRefsFromContextualUnionType1.ts === | ||
// function test1(arg: { <|[|prop|]: "foo"|> }) {} | ||
// test1({ /*FIND ALL REFS*/prop: "bar" }); | ||
// | ||
// function test2(arg: { prop: "foo" } | undefined) {} | ||
// test2({ prop: "bar" }); | ||
|
||
// === Details === | ||
[ | ||
{ | ||
"containerKind": "", | ||
"containerName": "", | ||
"kind": "property", | ||
"name": "(property) prop: \"foo\"", | ||
"displayParts": [ | ||
{ | ||
"text": "(", | ||
"kind": "punctuation" | ||
}, | ||
{ | ||
"text": "property", | ||
"kind": "text" | ||
}, | ||
{ | ||
"text": ")", | ||
"kind": "punctuation" | ||
}, | ||
{ | ||
"text": " ", | ||
"kind": "space" | ||
}, | ||
{ | ||
"text": "prop", | ||
"kind": "propertyName" | ||
}, | ||
{ | ||
"text": ":", | ||
"kind": "punctuation" | ||
}, | ||
{ | ||
"text": " ", | ||
"kind": "space" | ||
}, | ||
{ | ||
"text": "\"foo\"", | ||
"kind": "stringLiteral" | ||
} | ||
] | ||
} | ||
] | ||
|
||
|
||
|
||
// === findAllReferences === | ||
// === /tests/cases/fourslash/findAllRefsFromContextualUnionType1.ts === | ||
// function test1(arg: { prop: "foo" }) {} | ||
// test1({ prop: "bar" }); | ||
// | ||
// function test2(arg: { <|[|prop|]: "foo"|> } | undefined) {} | ||
// test2({ /*FIND ALL REFS*/<|[|{| isWriteAccess: true, isDefinition: true |}prop|]: "bar"|> }); | ||
|
||
// === Definitions === | ||
// === /tests/cases/fourslash/findAllRefsFromContextualUnionType1.ts === | ||
// function test1(arg: { prop: "foo" }) {} | ||
// test1({ prop: "bar" }); | ||
// | ||
// function test2(arg: { <|[|prop|]: "foo"|> } | undefined) {} | ||
// test2({ /*FIND ALL REFS*/prop: "bar" }); | ||
|
||
// === Details === | ||
[ | ||
{ | ||
"containerKind": "", | ||
"containerName": "", | ||
"kind": "property", | ||
"name": "(property) prop: \"foo\"", | ||
"displayParts": [ | ||
{ | ||
"text": "(", | ||
"kind": "punctuation" | ||
}, | ||
{ | ||
"text": "property", | ||
"kind": "text" | ||
}, | ||
{ | ||
"text": ")", | ||
"kind": "punctuation" | ||
}, | ||
{ | ||
"text": " ", | ||
"kind": "space" | ||
}, | ||
{ | ||
"text": "prop", | ||
"kind": "propertyName" | ||
}, | ||
{ | ||
"text": ":", | ||
"kind": "punctuation" | ||
}, | ||
{ | ||
"text": " ", | ||
"kind": "space" | ||
}, | ||
{ | ||
"text": "\"foo\"", | ||
"kind": "stringLiteral" | ||
} | ||
] | ||
} | ||
] |
10 changes: 10 additions & 0 deletions
10
tests/cases/fourslash/findAllRefsFromContextualUnionType1.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
/// <reference path='fourslash.ts' /> | ||
|
||
// @strict: true | ||
//// function test1(arg: { prop: "foo" }) {} | ||
//// test1({ /*1*/prop: "bar" }); | ||
//// | ||
//// function test2(arg: { prop: "foo" } | undefined) {} | ||
//// test2({ /*2*/prop: "bar" }); | ||
|
||
verify.baselineFindAllReferences("1", "2"); |
11 changes: 11 additions & 0 deletions
11
tests/cases/fourslash/quickInfoFromContextualUnionType2.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/// <reference path='fourslash.ts' /> | ||
|
||
// @strict: true | ||
//// function test1(arg: { prop: "foo" }) {} | ||
//// test1({ /*1*/prop: "bar" }); | ||
//// | ||
//// function test2(arg: { prop: "foo" } | undefined) {} | ||
//// test2({ /*2*/prop: "bar" }); | ||
|
||
verify.quickInfoAt("1", '(property) prop: "foo"'); | ||
verify.quickInfoAt("2", '(property) prop: "foo"'); |
33 changes: 33 additions & 0 deletions
33
tests/cases/fourslash/quickInfoFromContextualUnionType3.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
/// <reference path='fourslash.ts' /> | ||
|
||
// https://github.com/microsoft/TypeScript/issues/61382 | ||
|
||
// @strict: true | ||
//// declare const foo1: <D extends Foo1<D>>(definition: D) => D; | ||
//// | ||
//// type Foo1<D, Bar = Prop<D, "bar">> = { | ||
//// bar: { | ||
//// [K in keyof Bar]: Bar[K] extends boolean | ||
//// ? Bar[K] | ||
//// : "Error: bar should be boolean"; | ||
//// }; | ||
//// }; | ||
//// | ||
//// declare const foo2: <D extends Foo2<D>>(definition: D) => D; | ||
//// | ||
//// type Foo2<D, Bar = Prop<D, "bar">> = { | ||
//// bar?: { | ||
//// [K in keyof Bar]: Bar[K] extends boolean | ||
//// ? Bar[K] | ||
//// : "Error: bar should be boolean"; | ||
//// }; | ||
//// }; | ||
//// | ||
//// type Prop<T, K> = K extends keyof T ? T[K] : never; | ||
//// | ||
//// foo1({ bar: { /*1*/X: "test" } }); | ||
//// | ||
//// foo2({ bar: { /*2*/X: "test" } }); | ||
|
||
verify.quickInfoAt("1", '(property) X: "Error: bar should be boolean"'); | ||
verify.quickInfoAt("2", '(property) X: "Error: bar should be boolean"'); |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This just fine-tunes the algorithm for a common case. By discarding nullable (that can't provide anything useful here as they don't have properties anyway) the
!contextualType.isUnion()
"fast path" is taken here. This allows for better symbol result to be returned from here - despite those locations having errors. Without this the symbol of the anonymous object literal type (the one with error) is picked and that's less useful.