-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
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
Start using TypeAliasType in the semantic analyzer #7923
Merged
+136
−86
Merged
Changes from all commits
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
There are no files selected for viewing
This file contains 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 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 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 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 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 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,9 @@ 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 | ||
# Keep track of the type aliases already visited. This is needed to avoid | ||
# infinite recursion on types like A = Union[int, List[A]]. | ||
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 +53,16 @@ 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: | ||
# Avoid infinite recursion on recursive type aliases. | ||
# Note: it is fine to skip the aliases we have already seen in non-recursive types, | ||
# since errors there have already already reported. | ||
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 special 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 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 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 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 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 |
---|---|---|
|
@@ -13,7 +13,7 @@ | |
|
||
from abc import abstractmethod | ||
from collections import OrderedDict | ||
from typing import Generic, TypeVar, cast, Any, List, Callable, Iterable, Optional | ||
from typing import Generic, TypeVar, cast, Any, List, Callable, Iterable, Optional, Set | ||
from mypy_extensions import trait | ||
|
||
T = TypeVar('T') | ||
|
@@ -246,14 +246,21 @@ def visit_type_alias_type(self, t: TypeAliasType) -> Type: | |
class TypeQuery(SyntheticTypeVisitor[T]): | ||
"""Visitor for performing queries of types. | ||
|
||
strategy is used to combine results for a series of types | ||
strategy is used to combine results for a series of types, | ||
common use cases involve a boolean query using `any` or `all`. | ||
|
||
Common use cases involve a boolean query using `any` or `all` | ||
Note: this visitor keeps an internal state (tracks type aliases to avoid | ||
recursion), so it should *never* be re-used for querying different types, | ||
create a new visitor instance instead. | ||
|
||
# TODO: check that we don't have existing violations of this rule. | ||
""" | ||
|
||
def __init__(self, strategy: Callable[[Iterable[T]], T]) -> None: | ||
self.strategy = strategy | ||
self.seen = [] # type: List[Type] | ||
# Keep track of the type aliases already visited. This is needed to avoid | ||
# infinite recursion on types like A = Union[int, List[A]]. | ||
self.seen_aliases = set() # type: Set[TypeAliasType] | ||
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. Whill we ever need to clear this? If the visitor is single-use, mention this in the docstring. |
||
|
||
def visit_unbound_type(self, t: UnboundType) -> T: | ||
return self.query_types(t.args) | ||
|
@@ -329,14 +336,16 @@ def query_types(self, types: Iterable[Type]) -> T: | |
"""Perform a query for a list of types. | ||
|
||
Use the strategy to combine the results. | ||
Skip types already visited types to avoid infinite recursion. | ||
Note: types can be recursive until they are fully analyzed and "unentangled" | ||
in patches after the semantic analysis. | ||
Skip type aliases already visited types to avoid infinite recursion. | ||
""" | ||
res = [] # type: List[T] | ||
for t in types: | ||
if any(t is s for s in self.seen): | ||
continue | ||
self.seen.append(t) | ||
if isinstance(t, TypeAliasType): | ||
# Avoid infinite recursion for recursive type aliases. | ||
# TODO: Ideally we should fire subvisitors here (or use caching) if we care | ||
# about duplicates. | ||
if t in self.seen_aliases: | ||
continue | ||
self.seen_aliases.add(t) | ||
res.append(t.accept(self)) | ||
return self.strategy(res) |
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.
Add comment (also explain why we need this).