Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2019-03-01 | Split abnf_to_pest and dhall into their own crates | Nadrieril | 45 | -4440/+0 | |
2019-02-28 | Auto-generate pest file from spec abnf | Nadrieril | 5 | -843/+198 | |
2019-02-28 | Start rewriting parser in pest | Nadrieril | 2 | -0/+896 | |
2019-02-28 | Fix imports in grammar.lalrpop | Nadrieril | 1 | -7/+7 | |
2019-02-27 | Add Natural/Show builtin | Nadrieril | 2 | -0/+4 | |
2019-02-27 | Add one test from the spec | Nadrieril | 2 | -17/+13 | |
2019-02-27 | Fix mixed up parsing of integers/naturals | Nadrieril | 2 | -5/+5 | |
2019-02-27 | Switch to Rust 2018 edition | Nadrieril | 6 | -39/+37 | |
2019-02-27 | Revert "Try to update to latest nom" | Nadrieril | 4 | -29/+31 | |
This reverts commit d5bc8da87f3fed99a010d867a3e34d2768caf768. | |||||
2019-02-27 | Try to update to latest nom | Nadrieril | 4 | -31/+29 | |
2019-02-27 | Update dependencies | Nadrieril | 3 | -7/+8 | |
2017-09-08 | fixed some clippy warnings | Andre Bogus | 5 | -188/+187 | |
2017-03-10 | _ unused variables | NanoTech | 1 | -5/+5 | |
2017-03-10 | Fix match on Embed(X) | NanoTech | 1 | -1/+1 | |
2017-03-10 | Start implementing error explanations | NanoTech | 36 | -26/+1828 | |
2017-03-10 | Implement fold/build fusion normalize cases | NanoTech | 1 | -7/+7 | |
2017-03-10 | Fix context lookup order | NanoTech | 1 | -1/+1 | |
The most recent item, with context index 0, is at the end of the Vec. | |||||
2017-03-10 | Format more operators, still ignoring precedence for now | NanoTech | 1 | -0/+6 | |
2017-03-10 | Format ListLit and OptionalLit | NanoTech | 1 | -23/+27 | |
2017-03-10 | Implement more normalize and typecheck cases | NanoTech | 2 | -226/+245 | |
2017-03-10 | Implement all subst cases | NanoTech | 1 | -8/+51 | |
2017-03-10 | Implement all shift cases | NanoTech | 1 | -74/+46 | |
2017-03-10 | Use BTreeMaps to keep records and unions sorted | NanoTech | 2 | -27/+13 | |
2017-03-10 | Implement more list functions | NanoTech | 2 | -33/+55 | |
Now requires nightly for #![feature(box_patterns)] | |||||
2017-03-10 | Fix formatting for Pi("_", _, _) | NanoTech | 1 | -0/+5 | |
2017-03-10 | normalize: Take the input Expr by reference | NanoTech | 3 | -51/+60 | |
2017-03-10 | Implement more typechecker cases | NanoTech | 1 | -1/+30 | |
2017-03-10 | impl Display for Expr | NanoTech | 2 | -10/+241 | |
2017-03-10 | Implement more typechecking for Prelude/List/shifted | NanoTech | 2 | -101/+122 | |
2017-03-10 | subst: Don't need to match on the left Expr | NanoTech | 1 | -12/+12 | |
2017-03-10 | subst: Take the input Exprs by reference | NanoTech | 2 | -20/+19 | |
2017-03-10 | shift: Take the input Expr by reference | NanoTech | 2 | -28/+24 | |
2017-03-10 | Seperate built-in types and functions from Expr | NanoTech | 5 | -177/+130 | |
2017-03-10 | Replace Cow<'i, str> with &'i str in Expr | NanoTech | 5 | -58/+50 | |
Cow::Owned is never used in Expr | |||||
2017-03-10 | Begin implementing type checking | NanoTech | 6 | -13/+1176 | |
2017-03-10 | Reference input strings without copying | NanoTech | 5 | -66/+70 | |
2017-03-10 | Parse string literals | NanoTech | 2 | -12/+95 | |
2017-03-10 | Parse identifiers' first character correctly | NanoTech | 1 | -2/+5 | |
2017-03-10 | Remove unused and commented symbol lexing code | NanoTech | 1 | -32/+0 | |
2017-03-10 | Refactor comment end finding | NanoTech | 1 | -18/+9 | |
2017-03-10 | Parse Const, lists, and records | NanoTech | 4 | -33/+133 | |
Also fix keyword parsing to always consume whole identifiers. | |||||
2017-03-10 | Colored error messages | NanoTech | 1 | -9/+38 | |
2017-03-10 | rustc-style error messages | NanoTech | 1 | -3/+29 | |
2017-03-10 | test reserved | NanoTech | 1 | -1/+1 | |
2017-03-10 | Parse builtins correctly | NanoTech | 2 | -1/+27 | |
2017-03-10 | Separate keywords and builtins | NanoTech | 2 | -35/+44 | |
2017-03-10 | Print some error context | NanoTech | 1 | -2/+8 | |
2017-03-10 | Add more ExprB rules | NanoTech | 2 | -7/+35 | |
2017-03-10 | Skip comments | NanoTech | 1 | -8/+41 | |
2017-03-10 | Report the offset of errors | NanoTech | 1 | -2/+3 | |