1. 首页
  2. 数据库
  3. 其它
  4. toy rsql parser:用Rust编写的玩具SQL解析器。 (进行中) 源码

toy rsql parser:用Rust编写的玩具SQL解析器。 (进行中) 源码

上传者: 2021-03-27 15:21:55上传 ZIP文件 8.67KB 热度 22次
玩具-rsql-解析器 用Rust编写的玩具SQL解析器。 (进行中) Lexer // input query SELECT * FROM user WHERE id = 1; // output tokens [ Annot { value: Select }, Annot { value: Ast }, Annot { value: FromTable }, Annot { value: Ident("user") }, Annot { value: Where }, Annot { value: Ident("id") }, Annot { value: EqOp }, Annot { value: Number(1) }, Annot { value: SemiColon } ] 特征 最小词法分析器 Lexer 解析器
用户评论