class compiler::Parse

sys::Obj
  compiler::CompilerSupport
    compiler::CompilerStep
      compiler::Parse

Source

Parse is responsible for parsing all the compilation units which have already been tokenized into their full abstract syntax tree representation in memory. Once complete this step populates the Compiler.types list with the list of declared types.

make

new make(Compiler compiler)

Source

Constructor takes the associated Compiler

run

virtual override Void run()

Source

Run the step