| Commit message (Expand) | Author | Files | Lines |
2019-08-31 | Don't URL-decode path segments | Nadrieril | 1 | -0/+4 |
2019-08-31 | Implement parsing of `toMap` keyword | Nadrieril | 4 | -9/+13 |
2019-08-30 | Rework test harness to prepare for new types of tests | Nadrieril | 3 | -362/+457 |
2019-08-30 | Cleanup conversion of `Value` to `Expr` | Nadrieril | 3 | -102/+66 |
2019-08-28 | Rename SubExpr to Expr, and Expr to RawExpr | Nadrieril | 7 | -59/+54 |
2019-08-27 | clippy | Nadrieril | 3 | -5/+5 |
2019-08-26 | Tweak tests to avoid double compilation | Nadrieril | 3 | -3/+7 |
2019-08-26 | Check correctness of type info in a few more places | Nadrieril | 1 | -17/+43 |
2019-08-25 | Remove now unnecessary VoVF enum | Nadrieril | 3 | -98/+53 |
2019-08-25 | Rework apply_builtin to enforce preservation of type information | Nadrieril | 2 | -200/+171 |
2019-08-25 | Enforce type information almost everywhere | Nadrieril | 5 | -63/+53 |
2019-08-25 | Check consistency of type information | Nadrieril | 2 | -27/+30 |
2019-08-25 | Keep type information through normalization | Nadrieril | 3 | -90/+170 |
2019-08-23 | Clarify which syntax elements are completely handled in the tck phase | Nadrieril | 2 | -25/+24 |
2019-08-23 | Keep type information after RecursiveRecordTypeMerge | Nadrieril | 2 | -89/+23 |
2019-08-21 | Don't use take_mut::take lightly since normalize_whnf might panic | Nadrieril | 1 | -9/+18 |
2019-08-20 | Reduce API surface of dhall crate | Nadrieril | 3 | -24/+10 |
2019-08-20 | Move type construction fns from serde_dhall to dhall | Nadrieril | 1 | -1/+34 |
2019-08-20 | Use Ret in apply_builtin | Nadrieril | 2 | -96/+101 |
2019-08-20 | Propagate type information in Value::app() | Nadrieril | 3 | -35/+33 |
2019-08-20 | Track evaluation status alongside ValueF in VoVF | Nadrieril | 3 | -68/+80 |
2019-08-20 | No need for Cow in return type of get_type | Nadrieril | 4 | -27/+24 |
2019-08-20 | Introduce a new enum to store either a Value or a ValueF | Nadrieril | 4 | -74/+147 |
2019-08-20 | Naming tweaks | Nadrieril | 4 | -41/+33 |
2019-08-20 | Add Value::from_builtin | Nadrieril | 3 | -37/+24 |
2019-08-20 | Clarify conversion of Const/Builtin to Value | Nadrieril | 2 | -21/+29 |
2019-08-20 | Cleanup | Nadrieril | 5 | -52/+65 |
2019-08-20 | Standardize records of mixed kinds | Nadrieril | 2 | -53/+17 |
2019-08-20 | Reuse work to avoid complicated recursion in record merging | Nadrieril | 3 | -151/+25 |
2019-08-20 | Tweak Ok/Err handling in typecheck | Nadrieril | 1 | -157/+128 |
2019-08-19 | Tweak Value API | Nadrieril | 1 | -28/+19 |
2019-08-19 | Merge TypedValue and Value | Nadrieril | 7 | -354/+232 |
2019-08-19 | Reduce untyped construction of Values | Nadrieril | 5 | -108/+113 |
2019-08-19 | Use TypedValue instead of Typed in normalize and typecheck | Nadrieril | 8 | -334/+255 |
2019-08-19 | s/to_valuef/to_whnf/ and avoid cloning ValueFs when possible | Nadrieril | 7 | -192/+182 |
2019-08-18 | Merge ValueInternal and TypedValueInternal | Nadrieril | 1 | -111/+79 |
2019-08-18 | Rework ValueInternal and clarify invariants around ValueF | Nadrieril | 4 | -78/+85 |
2019-08-17 | s/Thunk/Value/ | Nadrieril | 8 | -925/+927 |
2019-08-16 | Share type alongside the value in a thunk | Nadrieril | 2 | -40/+110 |
2019-08-16 | Use generic Shift/Subst impls | Nadrieril | 3 | -192/+186 |
2019-08-16 | Store type in Thunk | Nadrieril | 2 | -58/+71 |
2019-08-16 | Remove Const-optimization for now | Nadrieril | 1 | -14/+5 |
2019-08-16 | s/Value/ValueF/ | Nadrieril | 7 | -337/+343 |
2019-08-16 | Try to minimize untyped TypedThunks | Nadrieril | 3 | -32/+42 |
2019-08-16 | fixup! No need for generic Context anymore | Nadrieril | 1 | -1/+1 |
2019-08-16 | Free variables don't exist anymore | Nadrieril | 1 | -21/+13 |
2019-08-16 | No need for generic Context anymore | Nadrieril | 1 | -75/+38 |
2019-08-16 | Remove dead code | Nadrieril | 7 | -114/+27 |
2019-08-16 | Typecheck before normalizing in tests | Nadrieril | 3 | -17/+21 |
2019-08-16 | Avoid capture when typechecking union constructor | Nadrieril | 1 | -2/+1 |