class documentation

class SyntaxTreeParser: (source)

View In Hierarchy

Responsible to read files and cache their parsed tree.

Method __init__ Undocumented
Method parseFile Undocumented
Method parseString Undocumented
Instance Variable ast_cache Undocumented
Class _Error Errors are cached as instances of this class instead of base exceoptions in order to avoid cycles with the locals.
def __init__(self): (source)

Undocumented

def parseFile(self, path: Path) -> ast.Module: (source)

Undocumented

def parseString(self, string: str) -> ast.Module: (source)

Undocumented