PacktPublishing / Parsing-Algorithms

Parsing Algorithms, by Packt Publishing

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Parsing Algorithms

This is a repository from the Essentials of Parsing class (aka Parsing Algorithms).

As mentioned in the course description, we want our students to understand and implement every piece of detail from the parser themselves, instead of copy-pasting from the final solution.

Therefore, the source code here provides only the overall structure of the project, leaving the missing parts as assignments. The "Implement here..." show specific places which are needed to be completed in order to finalize the fully working parser.

Example:

/**
 * List of variable declarations.
 */
VariableDeclarationList
  : // Implement here...
  ;

Enroll

You can enroll to the full course here:

More details, classes, articles and info is on http://dmitrysoshnikov.com.

About

Parsing Algorithms, by Packt Publishing

License:MIT License


Languages

Language:JavaScript 100.0%