MyDSL/README.md
2020-12-18 18:29:23 +08:00

19 lines
469 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Jerry-DSL
一个
---
![coverage report](https://git.jerryyan.top/q792602257/MyDSL/badges/master/coverage.svg)
---
## src目录解析
- `Grammar` 语法解析器,验证语法及拆分语法
- `Output` 输出器,将解析的内容输出(并不执行)
- `Parser` 解析器,使用`Grammar`将内容解析成`Tokenizer`用的东西
- `Reader` 读取器,供`Tokenizer`读取使用
- `Token` 所有的Token
- `Tokenizer` Token生成器生成Token用的