Magic.happens('here');
This class is the parser of the whole extension. It uses the typescript compiler to parse a file or given
source code into the token stream and therefore into the AST of the source. Afterwards an array of
resources is generated and returned.
Recursive function that runs through the AST of a source and parses the nodes.
Creates the class / function / etc declarations and instanciates a new module / namespace
resource if needed.
Magic.happens('here'); This class is the parser of the whole extension. It uses the typescript compiler to parse a file or given source code into the token stream and therefore into the AST of the source. Afterwards an array of resources is generated and returned.
TypescriptParser