Video description
Understand the underlying theory behind recursive descent parser for a programming language
About This Video
- Learn about basic expression and tokenizer
- Learn about program structure and AST formats
- Learn about control flow and functions
In Detail
Parsing or syntactic analysis is one of the first stages in designing and implementing a compiler. A well-designed syntax of your programming language is a big motivation why users would prefer and choose your language.
Recursive descent parsers are the group of parsers that are widely used in practice in many production programming languages. In contrast with automated parsing algorithms, the manual implementation allows having full control over the parsing process and handling complex constructs, which may not be possible in the automatic parsers.
Besides, implementing a full manual parser from scratch allows understanding and seeing this process from inside, demystifying internal structures, and turning building parsers into an interesting engineering task.
In the Building a Parser from Scratch class, we dive into pure practical implementation, building and learning different aspects of parsers.
In this course, you will learn the concept of recursive descent parsing, understand what is tokenizer and how it cooperates with the parser module, learn what is Abstract Syntax Tree (AST) and how to have different formats of these ASTs, what is "lookahead" and predictive parsing, and eventually build a parser for a full programming language, similar to Java or JavaScript.
Publisher resources
Product information
- Title: Building a Parser from Scratch
- Author(s):
- Release date: April 2021
- Publisher(s): Packt Publishing
- ISBN: 9781801075107
You might also like
video
Python 3: Project-based Python, Algorithms, Data Structures
Learn to program with Python 3, visualize algorithms and data structures, and implement them in Python …
video
Vim Masterclass
Do you know that most of the command-line experts use the powerful features of the Vim …
book
40 Algorithms Every Programmer Should Know - Second Edition
Solve classic computer science problems from fundamental algorithms, such as sorting and searching, to modern algorithms …
video
React - The Complete Guide (incl. Hooks, React Router and Redux)
Dive in and learn React from scratch! Learn Reactjs, Redux, React Routing, Animations, Next.js basics and …