complement in 9.25

This commit is contained in:
2025-09-25 10:58:48 +09:00
parent 3acbb7e1e6
commit 87931e8cc2
4 changed files with 120 additions and 5 deletions

View File

@@ -34,8 +34,22 @@ One of the purposes of the compiler is error handling.
## Parsing
### Top-down Parsing
* Top-down Parsing
**Recursive Descent Parsing**
### Predictive Parsing
by using backtracking
* Predictive Parsing
Parsing Table: no need to backtrack.
### Parser Implement