| Commit message (Expand) | Author | Files | Lines |
2020-04-06 | Fix normalization bug | Nadrieril | 1 | -49/+49 |
2020-04-06 | Avoid a few allocations | Nadrieril | 2 | -16/+20 |
2020-04-06 | Factor our operations in normalization | Nadrieril | 2 | -300/+257 |
2020-04-06 | Split off operations from main expr enum | Nadrieril | 2 | -100/+128 |
2020-03-31 | Brutally make all of dhall pub | Nadrieril | 5 | -35/+35 |
2020-03-31 | Nir::normalize isn't useful | Nadrieril | 1 | -76/+0 |
2020-03-31 | Improve handling of builtin types in Nir | Nadrieril | 2 | -25/+32 |
2020-03-31 | Move conversion to SimpleVal/Ty to simple module | Nadrieril | 1 | -81/+0 |
2020-03-31 | Remove top-level Expr aliases | Nadrieril | 1 | -5/+5 |
2020-03-31 | Rename LitKind to NumKind | Nadrieril | 2 | -40/+40 |
2020-03-31 | Add SimpleType to mirror SimpleValue | Nadrieril | 1 | -1/+47 |
2020-03-31 | Add SimpleValue type to facilitate deserialization | Nadrieril | 1 | -0/+34 |
2020-03-17 | Remove never_type feature | Nadrieril | 1 | -13/+14 |
2020-03-17 | Run clippy | Nadrieril | 3 | -28/+29 |
2020-03-05 | Implement some normalization simplifications | Nadrieril | 1 | -76/+80 |
2020-03-02 | Normalization for ProjectionByExpr | Basile Henry | 1 | -3/+34 |
2020-02-19 | Avoid re-typechecking after import | Nadrieril | 1 | -0/+1 |
2020-02-18 | Remove useless `normalize` option from ToExprOptions | Nadrieril | 1 | -3/+0 |
2020-02-17 | Remove spans from Nir | Nadrieril | 1 | -15/+7 |
2020-02-17 | Rename Value to Nir | Nadrieril | 5 | -257/+239 |
2020-02-16 | Avoid recomputing universes in tck | Nadrieril | 1 | -3/+3 |
2020-02-16 | Start requiring Universe to build a Type | Nadrieril | 1 | -1/+1 |
2020-02-15 | Introduce proper Type struct | Nadrieril | 1 | -1/+4 |
2020-02-15 | Desugar Completion during resolution | Nadrieril | 1 | -11/+9 |
2020-02-15 | Factor some tck code to avoid needing get_type_tyexpr | Nadrieril | 2 | -3/+3 |
2020-02-13 | Simplify conversions to/from TyExpr | Nadrieril | 1 | -17/+3 |
2020-02-11 | Introduce LitKind to factor out common enum nodes | Nadrieril | 2 | -57/+50 |
2020-02-11 | Remove the Embed variant from ExprKind | Nadrieril | 2 | -15/+7 |
2020-02-10 | Remove need for Embed | Nadrieril | 1 | -0/+6 |
2020-02-09 | Remove types from NzEnv | Nadrieril | 3 | -30/+32 |
2020-02-09 | Remove all types from Value | Nadrieril | 2 | -74/+9 |
2020-02-09 | Take Hir for typecheck | Nadrieril | 1 | -2/+5 |
2020-02-09 | Remove extra types stored in Value | Nadrieril | 2 | -25/+14 |
2020-02-09 | Remove most TyExpr from normalization | Nadrieril | 2 | -76/+65 |
2020-02-09 | Add Hir as untyped alternative to TyExpr | Nadrieril | 2 | -7/+7 |
2020-02-09 | Remove move type propagation through Value | Nadrieril | 2 | -154/+54 |
2020-02-09 | Remove most reliance on types stored in Value | Nadrieril | 3 | -38/+53 |
2020-02-06 | Implement some record simplifications | Nadrieril | 1 | -2/+92 |
2020-02-05 | Normalize toMap | Nadrieril | 2 | -5/+50 |
2020-02-02 | Use Spans consistently by value | Nadrieril | 1 | -3/+3 |
2020-02-02 | More errors | Nadrieril | 1 | -0/+3 |
2020-02-02 | More nice errors plus some refactor | Nadrieril | 1 | -3/+0 |
2020-02-01 | Implement once nice error using annotate_snippets | Nadrieril | 1 | -0/+4 |
2020-01-31 | Factor out custom Lazy struct | Nadrieril | 3 | -35/+83 |
2020-01-30 | Use Rc equality to shortcut Value equality | Nadrieril | 1 | -2/+1 |
2020-01-30 | Tweak ConstantClosure | Nadrieril | 1 | -13/+7 |
2020-01-30 | Eval Thunk by move | Nadrieril | 1 | -4/+3 |
2020-01-30 | Get rid of all the manual Ref borrows | Nadrieril | 1 | -115/+55 |
2020-01-30 | Use OnceCell to enable returning &ValKind | Nadrieril | 1 | -68/+53 |
2020-01-30 | Replace Form with a pair of RefCells, in preparation for OnceCell | Nadrieril | 1 | -88/+71 |