You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Jukka Lehtosalo edited this page Jun 27, 2022
·
8 revisions
The mypy parser uses the CPython "ast" module to convert source code into an abstract syntax tree (AST).
(The term parse tree is sometimes used informally as a synonym.)
You can manually call the mypy.parse.parse function to experiment with it (first install test dependencies in the current virtualenv):
The names MypyFile, ExpressionStmt, CallExpr, NameExpr and StrExpr refer to AST node classes defined in mypy/nodes.py.
The numbers after colons are line numbers.
The parser does only a minimal amount of consistency checks. As such it also accepts many invalid programs.
The next compiler pass, Semantic Analyzer, performs additional checks.