-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Naming style for local functions #26165
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
24 commits
Select commit
Hold shift + click to select a range
3ead6de
SymbolKindOrTypeKind -> SymbolOrTypeOrMethodKind
Neme12 6cb3529
Adding local function symbol specification
Neme12 06009c9
Adding EditorConfig test
Neme12 4484ca7
Adding code fix tests
Neme12 62c426c
Adding analysis of local functions
Neme12 2dcfaf5
Adding VS integration
Neme12 9d6a970
Adding local functions to async naming EditorConfig test
Neme12 531c92a
Adding code fix tests for async methods & local functions
Neme12 294eb5c
Changing tests
Neme12 4bb5b9b
Fixing DeclarationNameCompletionProvider to account for local functions
Neme12 2d07f56
Undoing rename
Neme12 d379694
Adding tests for custom naming style to DeclarationNameCompletionProv…
Neme12 a13fed9
Adding upgrade path for naming preferences
Neme12 e828dae
Details
Neme12 c0ca8d7
Test for correct order of naming suggestions
Neme12 de35f13
Modifier exclusion for local vs local function declaration
Neme12 8304bf8
Fixing logic for name suggestions inside using & for (they can't be a…
Neme12 393802e
Name suggestions for an actual fully-typed local function
Neme12 014dadd
Adding test with a higher than latest serialization version
Neme12 990246e
Merge remote-tracking branch 'upstream/master' into localFunctionNami…
Neme12 3f00166
Fix after merge
Neme12 d9262c2
Adding new roaming location to prevent syncing the new serialization …
Neme12 352226e
Removing outdated comment & adding missing test case
Neme12 ed4f34c
Switching to form without brackets
Neme12 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
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.
do these tests run in parallel? if so, this would be a problem. Or is parallel running opt-in?
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 is what the existing tests do
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.
I thought there was a new test class instance created for each test, isn't that the case?
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.
and yes, parallel running is disabled by default
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.
Great. Thanks!