MyDSL/README.md
2021-01-22 17:32:15 +08:00

21 lines
594 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
一个
---
![pipeline report](https://git.jerryyan.top/q792602257/MyDSL/badges/master/pipeline.svg)
![coverage report](https://git.jerryyan.top/q792602257/MyDSL/badges/master/coverage.svg)
---
## src目录解析
- `Grammar` 语法解析器,验证语法及拆分语法
- `Output` 输出器,将解析的内容输出(并不执行)
- `Lexer` 词法解析器,将语义转换成正常的语法供`Grammar`使用
- `Reader` 读取器,供`Tokenizer`读取使用
- `Token` 所有的Token
- `Token/Factory` Token工厂生成Token用的
- `Tokenizer` 转换成Token用的