Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2021-01-22 | chore: fix clippy warnings | Nadrieril | 1 | -4/+4 | |
2020-12-07 | Resolve imports and alternatives outside of the ast traversal | Nadrieril | 1 | -0/+8 | |
2020-12-07 | Defer name errors to typechecking | Nadrieril | 1 | -0/+1 | |
We aren't supposed to inspect anything before alternatives are chosen | |||||
2020-12-07 | Pass import results via the global context | Nadrieril | 1 | -1/+4 | |
2020-12-07 | Thread cx everywhere else imports are read | Nadrieril | 1 | -2/+2 | |
2020-12-07 | Thread cx through normalization | Nadrieril | 3 | -133/+145 | |
2020-11-03 | Remove NirInternal | Nadrieril | 2 | -50/+23 | |
2020-11-03 | Normalize `with` by mutation. | Nadrieril | 3 | -5/+42 | |
This is Cow-style mutation: we clone only what's shared and then mutate it. This it more legible and more efficient than the immutable version. | |||||
2020-11-03 | Try to keep ownership of `Nir`s when convenient | Nadrieril | 1 | -1/+1 | |
The goal is that we might avoid cloning internals in the common case where a value is not shared | |||||
2020-04-06 | Move BinOp and Builtin definitions in the relevant module | Nadrieril | 1 | -4/+3 | |
2020-04-06 | Move builtins module up a level | Nadrieril | 1 | -2/+3 | |
2020-04-06 | Extract operation-related code to a new module | Nadrieril | 2 | -295/+9 | |
2020-04-06 | Only need to store OpKind in Nir | Nadrieril | 2 | -82/+77 | |
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 | |
It pretends to normalize but actually can't normalize under lambdas. The correct way to normalize a Nir is to convert it to Hir. | |||||
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 | |
That info was too unreliable: we need clean tracking mechanisms if we want to improve error messages | |||||
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 | |
This was an archaic leftover from copying the Haskell datatypes anyway | |||||
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 | |