| Commit message (Expand) | Author | Files | Lines |
2019-04-13 | Fix `let` parsing | Nadrieril | 1 | -0/+1 |
2019-04-13 | Improve error display on test failure | Nadrieril | 1 | -10/+20 |
2019-04-13 | Various typecheck improvements | Nadrieril | 1 | -83/+93 |
2019-04-13 | Don't need dhall::expr!() for builtins | Nadrieril | 1 | -15/+20 |
2019-04-13 | Split typecheck into two phases | Nadrieril | 1 | -202/+214 |
2019-04-13 | docs: document import resolution root | Nadrieril | 1 | -4/+6 |
2019-04-13 | Document all of the API | Nadrieril | 4 | -10/+60 |
2019-04-12 | Restrict public API to its most minimal expression | Nadrieril | 8 | -101/+111 |
2019-04-12 | Remove any remains from the standard or `dhall-haskell` | Nadrieril | 1 | -2/+2 |
2019-04-12 | Capture `Span`s in the AST and thread them through Parsed and Resolved | Nadrieril | 3 | -15/+10 |
2019-04-11 | Thread lifetimes through other newtypes | Nadrieril | 7 | -155/+174 |
2019-04-11 | Add lifetime parameters to Parsed and Resolved | Nadrieril | 5 | -23/+52 |
2019-04-11 | Remove type parameter from TypeError | Nadrieril | 3 | -28/+27 |
2019-04-11 | Respect import boundaries | Nadrieril | 5 | -49/+63 |
2019-04-11 | Be more civilized when typecheck case unimplemented | Nadrieril | 1 | -2/+3 |
2019-04-11 | Ditch quick_error because it doesn't support generic parameters | Nadrieril | 2 | -34/+50 |
2019-04-11 | Improve simple type handling in typecheck | Nadrieril | 2 | -37/+39 |
2019-04-11 | Abstract get_type() into a trait | Nadrieril | 6 | -49/+96 |
2019-04-11 | Handle untyped case differently from the type of Sort | Nadrieril | 4 | -75/+107 |
2019-04-11 | `Some` is not a builtin, it's a keyword | Nadrieril | 1 | -1/+0 |
2019-04-11 | Remove premature #[inline(always)] | Nadrieril | 1 | -18/+0 |
2019-04-11 | Add basic deserialization support | Nadrieril | 5 | -9/+95 |
2019-04-10 | Simplify test harness | Nadrieril | 3 | -119/+97 |
2019-04-10 | Display error messages | Nadrieril | 1 | -0/+5 |
2019-04-10 | Allow providing type for typechecking in API | Nadrieril | 4 | -20/+21 |
2019-04-10 | Mild cleanup imports | Nadrieril | 2 | -18/+16 |
2019-04-10 | Cleanup error handling | Nadrieril | 4 | -56/+50 |
2019-04-10 | Split traits module into submodules | Nadrieril | 3 | -50/+47 |
2019-04-10 | Add error submodule | Nadrieril | 4 | -8/+8 |
2019-04-10 | Write main lib doc | Nadrieril | 1 | -0/+106 |
2019-04-10 | Prepare for serde support | Nadrieril | 2 | -0/+10 |
2019-04-10 | Add a new Deserialize trait for reading dhall values | Nadrieril | 2 | -0/+64 |
2019-04-10 | s/load_from/parse/ | Nadrieril | 3 | -20/+20 |
2019-04-10 | Add SimpleType and SimpeStaticType. Derive the latter | Nadrieril | 4 | -43/+111 |
2019-04-09 | Update dhall-lang submodule | Nadrieril | 1 | -1/+0 |
2019-04-08 | clippy | Nadrieril | 4 | -31/+40 |
2019-04-08 | Limit public API | Nadrieril | 3 | -14/+8 |
2019-04-08 | Rename spec tests | Nadrieril | 3 | -599/+599 |
2019-04-08 | Move spec tests into the relevant files | Nadrieril | 5 | -0/+833 |
2019-04-07 | Tweaks | Nadrieril | 2 | -4/+2 |
2019-04-07 | Restrict public API | Nadrieril | 6 | -55/+57 |
2019-04-07 | Fix | Nadrieril | 1 | -0/+1 |
2019-04-07 | Use macros in typecheck; much cleaner | Nadrieril | 1 | -132/+125 |
2019-04-07 | Universe hierarchy is overkill | Nadrieril | 2 | -77/+63 |
2019-04-07 | More typecheck | Nadrieril | 1 | -66/+89 |
2019-04-07 | Avoid constructing exprs manually when possible | Nadrieril | 1 | -18/+20 |
2019-04-07 | Store Normalized in type error | Nadrieril | 1 | -46/+66 |
2019-04-07 | Augment stack size for typecheck tests | Nadrieril | 1 | -0/+12 |
2019-04-07 | Handle universe error properly | Nadrieril | 1 | -35/+49 |
2019-04-07 | Put a Cow in Type | Nadrieril | 2 | -73/+81 |