toy rsql parser:用Rust编写的玩具SQL解析器。 (进行中) 源码
玩具-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 解析器
用户评论