Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Seperate built-in types and functions from Expr | NanoTech | 2017-03-10 | 1 | -37/+25 |
| | |||||
* | Replace Cow<'i, str> with &'i str in Expr | NanoTech | 2017-03-10 | 1 | -6/+4 |
| | | | | Cow::Owned is never used in Expr | ||||
* | Reference input strings without copying | NanoTech | 2017-03-10 | 1 | -6/+8 |
| | |||||
* | Parse string literals | NanoTech | 2017-03-10 | 1 | -12/+93 |
| | |||||
* | Parse identifiers' first character correctly | NanoTech | 2017-03-10 | 1 | -2/+5 |
| | |||||
* | Remove unused and commented symbol lexing code | NanoTech | 2017-03-10 | 1 | -32/+0 |
| | |||||
* | Refactor comment end finding | NanoTech | 2017-03-10 | 1 | -18/+9 |
| | |||||
* | Parse Const, lists, and records | NanoTech | 2017-03-10 | 1 | -28/+72 |
| | | | | Also fix keyword parsing to always consume whole identifiers. | ||||
* | test reserved | NanoTech | 2017-03-10 | 1 | -1/+1 |
| | |||||
* | Separate keywords and builtins | NanoTech | 2017-03-10 | 1 | -27/+36 |
| | |||||
* | Add more ExprB rules | NanoTech | 2017-03-10 | 1 | -5/+24 |
| | |||||
* | Skip comments | NanoTech | 2017-03-10 | 1 | -8/+41 |
| | |||||
* | Report the offset of errors | NanoTech | 2017-03-10 | 1 | -2/+3 |
| | |||||
* | Initial commit | NanoTech | 2017-03-10 | 1 | -0/+240 |