-
Notifications
You must be signed in to change notification settings - Fork 13.4k
Fix findAllRefs, getHighlightSpans, renameLocs, renameInfo for default exports and functions expressions #3367
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
Merged
Merged
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
531f3aa
Nodes -> Node
DanielRosenwasser 1a17aba
Added tests.
DanielRosenwasser 9907d62
Added rename tests.
DanielRosenwasser 693c587
Removed unused code, use valueDeclaration for symbol.
DanielRosenwasser 24c5044
Error smarter.
DanielRosenwasser 70911a3
Adjust tests.
DanielRosenwasser cf193a4
Renamed tests.
DanielRosenwasser 2539ebe
Verify references count.
DanielRosenwasser b9ddfcc
Spit out JSON when expected =/= actual.
DanielRosenwasser ddb67e4
Fixed tests.
DanielRosenwasser 2c4bb57
Find the references themselves.
DanielRosenwasser 33693e8
Adjust expectations.
DanielRosenwasser 6f925ac
Add rename tests for function expressions.
DanielRosenwasser 934a3bf
Fixed 'displayName'.
DanielRosenwasser 035962b
Added test for find all refs of function expressions.
DanielRosenwasser bca3d01
Limit scope of function expressions to themselves.
DanielRosenwasser 6a7ce44
a deer, a female deer -> does
DanielRosenwasser abd7db7
Merge branch 'master' into fixDeFaultOfFindAllRefsToMaster
DanielRosenwasser eeec05d
Merge branch 'master' into fixDeFaultOfFindAllRefsToMaster
DanielRosenwasser 8316369
Added tests.
DanielRosenwasser 4143d1d
Addressed CR feedback.
DanielRosenwasser cdc8c3b
Use full display name in tests.
DanielRosenwasser 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 hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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,18 @@ | ||
| /// <reference path='fourslash.ts'/> | ||
|
|
||
| ////export default class [|DefaultExportedClass|] { | ||
| ////} | ||
| //// | ||
| ////var x: [|DefaultExportedClass|]; | ||
| //// | ||
| ////var y = new [|DefaultExportedClass|]; | ||
|
|
||
| let ranges = test.ranges() | ||
| for (let range of ranges) { | ||
| goTo.position(range.start); | ||
|
|
||
| verify.referencesCountIs(ranges.length); | ||
| for (let expectedReference of ranges) { | ||
| verify.referencesAtPositionContains(expectedReference); | ||
| } | ||
| } |
This file contains hidden or 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,19 @@ | ||
| /// <reference path='fourslash.ts'/> | ||
|
|
||
| ////export default function [|DefaultExportedFunction|]() { | ||
| //// return [|DefaultExportedFunction|] | ||
| ////} | ||
| //// | ||
| ////var x: typeof [|DefaultExportedFunction|]; | ||
| //// | ||
| ////var y = [|DefaultExportedFunction|](); | ||
|
|
||
| let ranges = test.ranges() | ||
| for (let range of ranges) { | ||
| goTo.position(range.start); | ||
|
|
||
| verify.referencesCountIs(ranges.length); | ||
| for (let expectedReference of ranges) { | ||
| verify.referencesAtPositionContains(expectedReference); | ||
| } | ||
| } |
This file contains hidden or 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,25 @@ | ||
| /// <reference path='fourslash.ts'/> | ||
|
|
||
| ////function [|f|]() { | ||
| //// return 100; | ||
| ////} | ||
| //// | ||
| ////export default [|f|]; | ||
| //// | ||
| ////var x: typeof [|f|]; | ||
| //// | ||
| ////var y = [|f|](); | ||
| //// | ||
| ////namespace [|f|] { | ||
| //// var local = 100; | ||
| ////} | ||
|
|
||
| let ranges = test.ranges() | ||
| for (let range of ranges) { | ||
| goTo.position(range.start); | ||
|
|
||
| verify.referencesCountIs(ranges.length); | ||
| for (let expectedReference of ranges) { | ||
| verify.referencesAtPositionContains(expectedReference); | ||
| } | ||
| } |
This file contains hidden or 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,28 @@ | ||
| /// <reference path='fourslash.ts'/> | ||
|
|
||
| ////function f() { | ||
| //// return 100; | ||
| ////} | ||
| //// | ||
| ////export default [|f|]; | ||
| //// | ||
| ////var x: typeof f; | ||
| //// | ||
| ////var y = f(); | ||
| //// | ||
| ////namespace /**/[|f|] { | ||
| ////} | ||
|
|
||
| // The function 'f' and the namespace 'f' don't get merged, | ||
| // but the 'export default' site, includes both meanings. | ||
|
|
||
| // Here we are testing whether the 'export default' | ||
| // site is included in the references to the namespace. | ||
|
|
||
| goTo.marker(); | ||
| let ranges = test.ranges(); | ||
| verify.referencesCountIs(ranges.length); | ||
|
|
||
| for (let expectedReference of ranges) { | ||
| verify.referencesAtPositionContains(expectedReference); | ||
| } |
This file contains hidden or 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,28 @@ | ||
| /// <reference path='fourslash.ts'/> | ||
|
|
||
| ////function /**/[|f|]() { | ||
| //// return 100; | ||
| ////} | ||
| //// | ||
| ////export default [|f|]; | ||
| //// | ||
| ////var x: typeof [|f|]; | ||
| //// | ||
| ////var y = [|f|](); | ||
| //// | ||
| ////namespace f { | ||
| ////} | ||
|
|
||
| // The function 'f' and the namespace 'f' don't get merged, | ||
| // but the 'export default' site, includes both meanings. | ||
|
|
||
| // Here we are testing whether the 'export default' site | ||
| // and all value-uses of 'f' are included in the references to the function. | ||
|
|
||
| goTo.marker(); | ||
| let ranges = test.ranges(); | ||
| verify.referencesCountIs(ranges.length); | ||
|
|
||
| for (let expectedReference of ranges) { | ||
| verify.referencesAtPositionContains(expectedReference); | ||
| } |
This file contains hidden or 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,28 @@ | ||
| /// <reference path='fourslash.ts'/> | ||
|
|
||
| ////function [|f|]() { | ||
| //// return 100; | ||
| ////} | ||
| //// | ||
| ////export default /**/[|f|]; | ||
| //// | ||
| ////var x: typeof [|f|]; | ||
| //// | ||
| ////var y = [|f|](); | ||
| //// | ||
| ////namespace [|f|] { | ||
| ////} | ||
|
|
||
| // The function 'f' and the namespace 'f' don't get merged, | ||
| // but the 'export default' site, includes both meanings. | ||
|
|
||
| // Here we are testing whether the 'export default' site | ||
| // and all value-uses of 'f' are included in the references to the function. | ||
|
|
||
| goTo.marker(); | ||
| let ranges = test.ranges(); | ||
| verify.referencesCountIs(ranges.length); | ||
|
|
||
| for (let expectedReference of ranges) { | ||
| verify.referencesAtPositionContains(expectedReference); | ||
| } |
Oops, something went wrong.
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.
What you mean by normalization? stripping quotes in
getDeclaredName? if so could you mention this in the comment