Parsers: Manual and Automated
Syntactic analysis techniques and tools
The bundle includes two courses on implementing parsers for programming languages:
During the course you will learn how parsing process work under the hood, understand different parsing algorithms – such as LL, LR, etc – and implement parsers, manual recursive-descent and automated, for full programming language, from scratch.
In this class you will learn how to build a Recursive-descent parser, understand concept of Abstract Syntax Tree (AST), and will get familiar with manual parsing process.
In this course you will learn about parsing algorithms, such as LL, LR, and others. In addition, you will build a full parser using parser generator tool.
I hope you'll enjoy the journey into implementing parsers for your programming language!
Your Instructor
Dmitry Soshnikov is a Software engineer, and a lecturer on different computer science topics.
He is passioned about education, and focuses on high-quality educational content: concise and straight to the point animated lectures with live-editing notes.
You will learn:
- Compilers and interpreters: building a Programing language
- Garbage Collectors (Automatic memory management)
- Theory of programming languages
- Automata Theory: Building a RegExp machine
- Parsers theory: Implementing a Parser Generator