-
Notifications
You must be signed in to change notification settings - Fork 509
Local type aliases #460
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
Local type aliases #460
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
e90d916
type aliases: extract TypeAliasResolver
jiripudil 1cf6303
type aliases: add test
jiripudil 72154c9
type aliases: support class-scoped local aliases
jiripudil f54f80e
type aliases: add test for nested aliases
jiripudil 293d9b3
type aliases: support type alias imports
jiripudil 390cb96
fix cs and phpstan baseline
jiripudil a4e48fe
Correct prefix priority
ondrejmirtes 9ed65cc
type aliases: resolve type aliases lazily and in correct NameScope
jiripudil de4ff0c
type aliases: remove __set_state from PhpDoc\Tag classes as they are …
jiripudil b8941b6
type aliases: add TemplateTypeCheck tests for local aliases
jiripudil 7f066e5
type aliases: keep the TypeNode already resolved by phpdoc-parser
jiripudil 3519a52
type aliases: report invalid alias definitions via a Rule instead of …
jiripudil a5ea824
Microoptimization
ondrejmirtes ce5a49a
resolvingClassTypeAliases should be unset here as well
ondrejmirtes e2cfe20
fix LocalTypeAliasesRule registration
jiripudil ec36298
remove obsolete data provider
jiripudil 1070463
Allow type aliases to be bypassed in SignatureMapParser
ondrejmirtes 4fc1534
Fix LocalTypeAliasesRule
ondrejmirtes 22eb90a
LocalTypeAliasesRuleTest does not require static reflection
ondrejmirtes b3fa374
treat TypeAliasImportTag::$importedFrom as a class name string
jiripudil c8f3f4f
resolve TypeAliasImportTag::$importedFrom in the name scope when reso…
jiripudil 25013e6
Resolve type aliases directly in resolveIdentifierTypeNode, not throu…
ondrejmirtes 334960c
Bump memory limit for tests-fast-static-reflection a bit
ondrejmirtes 9a8738d
Microoptimization
ondrejmirtes 31ea9a2
Regression test
ondrejmirtes 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
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.
Is this fine? @jiripudil
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.
Yes, looks fine.