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
A parser generator should be created to replace the current hand built parser. This will allow easier development of the mypy syntax, and language testability.
The text was updated successfully, but these errors were encountered:
Currently I am about halfway done writing a parser for mypy. At this point in time, it can process a set of rules written in python, and match those rules to a list of tokens. I am currently working on the tokenization part of the parser (up until now, I've been using hard-coded lists of tokens to test code).
The end goal is to be able to read in a ebnf-formatted grammar file, and output optimized parsing code that can be used to read the mypy files.
Looks like this never led to anything, so closing. Note that @ddfisher is working on making mypy use a (modified version of) the Python ast module, for speed.
A parser generator should be created to replace the current hand built parser. This will allow easier development of the mypy syntax, and language testability.
The text was updated successfully, but these errors were encountered: