Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove type parameter from ValueKind | Nadrieril | 2020-01-30 | 3 | -31/+20 |
| | |||||
* | Remove Value visitor | Nadrieril | 2020-01-30 | 3 | -309/+87 |
| | | | | | | It's mostly useful when we can change types, but it's also too constraining if we can, because then we can't enforce complex invariants like the one for TextLit. | ||||
* | Move parse and resolve up a level | Nadrieril | 2020-01-30 | 4 | -4/+3 |
| | |||||
* | Move main API to lib.rs | Nadrieril | 2020-01-30 | 8 | -250/+8 |
| | |||||
* | Move normalize under nze | Nadrieril | 2020-01-30 | 6 | -6/+5 |
| | |||||
* | Move Value-related stuff under semantics::nze | Nadrieril | 2020-01-30 | 7 | -11/+7 |
| | |||||
* | Introduce Thunks and normalize lazily | Nadrieril | 2020-01-30 | 7 | -45/+95 |
| | |||||
* | Remove NF marker; it was premature optimization | Nadrieril | 2020-01-30 | 1 | -22/+11 |
| | |||||
* | Increase encapsulation for Closures | Nadrieril | 2020-01-30 | 2 | -12/+32 |
| | |||||
* | Make unnormalized Values unobservable | Nadrieril | 2020-01-30 | 2 | -10/+3 |
| | |||||
* | s/as_whnf/kind/ | Nadrieril | 2020-01-30 | 4 | -55/+53 |
| | |||||
* | Tweak | Nadrieril | 2020-01-30 | 1 | -9/+4 |
| | |||||
* | Remove use of take_mut | Nadrieril | 2020-01-30 | 1 | -25/+22 |
| | |||||
* | Encapsulate partially applied builtin in a separate struct | Nadrieril | 2020-01-30 | 6 | -74/+120 |
| | |||||
* | Remove debug output in type errors | Nadrieril | 2020-01-30 | 1 | -12/+3 |
| | |||||
* | No need for the current env to tck Foo/build closures | Nadrieril | 2020-01-30 | 3 | -27/+3 |
| | |||||
* | Clean imports | Nadrieril | 2020-01-30 | 1 | -7/+8 |
| | |||||
* | Actually, no need for keeping extra args in apply_builtin | Nadrieril | 2020-01-30 | 1 | -25/+10 |
| | |||||
* | Remove old typecheck module | Nadrieril | 2020-01-30 | 3 | -21/+5 |
| | |||||
* | Move builtins-related code to its own module | Nadrieril | 2020-01-30 | 8 | -568/+553 |
| | |||||
* | Cleanup variable handling | Nadrieril | 2020-01-29 | 6 | -50/+32 |
| | |||||
* | Move envs to their own files | Nadrieril | 2020-01-29 | 11 | -241/+239 |
| | |||||
* | Finally get rid of all of the shift/subst_shift ! | Nadrieril | 2020-01-29 | 4 | -90/+3 |
| | |||||
* | s/QuoteEnv/VarEnv/ | Nadrieril | 2020-01-29 | 3 | -43/+40 |
| | |||||
* | Use NameEnv in tyexpr_to_expr | Nadrieril | 2020-01-29 | 2 | -35/+23 |
| | |||||
* | Remove dead code | Nadrieril | 2020-01-29 | 8 | -1187/+25 |
| | |||||
* | Fix insufficient normalization | Nadrieril | 2020-01-29 | 3 | -10/+16 |
| | |||||
* | Use TyExpr in Typed | Nadrieril | 2020-01-29 | 4 | -51/+36 |
| | |||||
* | Use Normalized in serde_dhall | Nadrieril | 2020-01-29 | 1 | -52/+74 |
| | |||||
* | Fix more bugs | Nadrieril | 2020-01-29 | 2 | -61/+40 |
| | |||||
* | Implement assert & merge and fix more bugs | Nadrieril | 2020-01-28 | 3 | -104/+171 |
| | |||||
* | Thread env through nztion to fix Foo/build closures | Nadrieril | 2020-01-28 | 6 | -44/+95 |
| | |||||
* | Fix all sorts of variable shenanigans | Nadrieril | 2020-01-28 | 3 | -117/+50 |
| | |||||
* | Start rewriting value comparison | Nadrieril | 2020-01-27 | 1 | -0/+107 |
| | |||||
* | Fix a bunch of bugs and more tck | Nadrieril | 2020-01-27 | 8 | -50/+100 |
| | |||||
* | Moar typecheck | Nadrieril | 2020-01-25 | 1 | -145/+342 |
| | |||||
* | More typecheck | Nadrieril | 2020-01-25 | 3 | -58/+301 |
| | |||||
* | Make most type errors stringy | Nadrieril | 2020-01-25 | 1 | -98/+53 |
| | |||||
* | Enable comparing Closures for equality | Nadrieril | 2020-01-25 | 3 | -14/+20 |
| | |||||
* | Typecheck more cases | Nadrieril | 2020-01-25 | 3 | -58/+153 |
| | |||||
* | Implement basic typecheck with new approach | Nadrieril | 2020-01-24 | 3 | -3/+150 |
| | |||||
* | Fix some variable shifting failures | Nadrieril | 2020-01-24 | 4 | -14/+53 |
| | |||||
* | Disable runtime type checks | Nadrieril | 2020-01-24 | 1 | -6/+7 |
| | |||||
* | Normalize more expressions | Nadrieril | 2020-01-24 | 2 | -9/+10 |
| | |||||
* | Restore all types in Value::to_tyexpr | Nadrieril | 2020-01-24 | 4 | -64/+101 |
| | |||||
* | Reuse normalize_one_layer in new eval flow | Nadrieril | 2020-01-24 | 1 | -27/+41 |
| | |||||
* | Implement basic env-based normalization for Value-based TyExpr | Nadrieril | 2020-01-23 | 5 | -109/+271 |
| | |||||
* | Prepare Value for reverse variables | Nadrieril | 2020-01-21 | 5 | -19/+49 |
| | | | | I thought it would work ><. It's a bit too early | ||||
* | Simplify type error type | Nadrieril | 2020-01-21 | 3 | -34/+14 |
| | |||||
* | Split TyEnv into two envs | Nadrieril | 2020-01-20 | 1 | -102/+152 |
| |