-
Notifications
You must be signed in to change notification settings - Fork 13.4k
Fix findAllRefs, getHighlightSpans, renameLocs, renameInfo for default exports and functions expressions #3247
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
Closed
Closed
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
a04928a
Nodes -> Node
DanielRosenwasser 37b5637
Added tests.
DanielRosenwasser fbe2796
Added rename tests.
DanielRosenwasser ab2d2eb
Removed unused code, use valueDeclaration for symbol.
DanielRosenwasser 2cd3096
Error smarter.
DanielRosenwasser 269a2d3
Adjust tests.
DanielRosenwasser 67c9708
Renamed tests.
DanielRosenwasser 4927a23
Verify references count.
DanielRosenwasser 14ca35c
Spit out JSON when expected =/= actual.
DanielRosenwasser 8d13566
Fixed tests.
DanielRosenwasser 2b3ccb1
Find the references themselves.
DanielRosenwasser 24b0d19
Adjust expectations.
DanielRosenwasser 88899c1
Add rename tests for function expressions.
DanielRosenwasser 4d3ad46
Fixed 'displayName'.
DanielRosenwasser 5935cdc
Added test for find all refs of function expressions.
DanielRosenwasser f8ef9c2
Limit scope of function expressions to themselves.
DanielRosenwasser e899cfe
a deer, a female deer -> does
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
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); | ||
| } |
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.
as per our discussion we need to remove this, and put it in getSymbolInfo instead. and this way getInternedName is just symbol.name all the time and we can remove it.