-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Start using TypeAliasType in the semantic analyzer #7923
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 1 commit
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
2d31741
Start working
ea02fc3
Some debugging attempts
51a63a4
Some more ideas
ilevkivskyi 6bdb0bc
Undo some experimental changes
ilevkivskyi ad8f4b4
Fix some issues
ilevkivskyi 88f8619
Make alias deps more like instance deps
ilevkivskyi 0da1fb2
Make alias deps more like instance deps
ilevkivskyi 9cdac2a
Extend one TODO
ilevkivskyi 407bb59
Remove redundant parentheses
ilevkivskyi 26e92cf
Undo unneeded test change
ilevkivskyi 792d7da
Fix self-check
ilevkivskyi c51bef0
Merge remote-tracking branch 'upstream/master' into recursive-types
2a2348b
Merge branch 'recursive-types' of https://github.com/ilevkivskyi/mypy…
1c1ea2b
Address CR
60a8c8e
Merge remote-tracking branch 'upstream/master' into recursive-types
f1f2c17
Merge branch 'master' into recursive-types
ilevkivskyi 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
Fix some issues
- Loading branch information
commit ad8f4b4ed40a4b7f525928be589b12465177cbe0
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,10 +5,12 @@ | |
operations, including subtype checks. | ||
""" | ||
|
||
from typing import List, Optional | ||
from typing import List, Optional, Set | ||
|
||
from mypy.nodes import TypeInfo, Context, MypyFile, FuncItem, ClassDef, Block | ||
from mypy.types import Type, Instance, TypeVarType, AnyType, get_proper_types | ||
from mypy.types import ( | ||
Type, Instance, TypeVarType, AnyType, get_proper_types, TypeAliasType, get_proper_type | ||
) | ||
from mypy.mixedtraverser import MixedTraverserVisitor | ||
from mypy.subtypes import is_subtype | ||
from mypy.sametypes import is_same_type | ||
|
@@ -27,6 +29,7 @@ def __init__(self, errors: Errors, options: Options, is_typeshed_file: bool) -> | |
self.scope = Scope() | ||
# Should we also analyze function definitions, or only module top-levels? | ||
self.recurse_into_functions = True | ||
self.seen_aliases = set() # type: Set[TypeAliasType] | ||
|
||
def visit_mypy_file(self, o: MypyFile) -> None: | ||
self.errors.set_file(o.path, o.fullname(), scope=self.scope) | ||
|
@@ -48,6 +51,13 @@ def visit_block(self, o: Block) -> None: | |
if not o.is_unreachable: | ||
super().visit_block(o) | ||
|
||
def visit_type_alias_type(self, t: TypeAliasType) -> None: | ||
super().visit_type_alias_type(t) | ||
if t in self.seen_aliases: | ||
return | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add comment about this sp 8000 ecial case. |
||
self.seen_aliases.add(t) | ||
get_proper_type(t).accept(self) | ||
|
||
def visit_instance(self, t: Instance) -> None: | ||
# Type argument counts were checked in the main semantic analyzer pass. We assume | ||
# that the counts are correct here. | ||
|
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.
Add comment (also explain why we need this).