summaryrefslogtreecommitdiff
path: root/dhall (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix Integer equalityNadrieril2019-05-051-4/+5
|
* Make Value equality be alpha-equivalenceNadrieril2019-05-053-21/+99
| | | | Closes #66, #65
* Use alpha-normalization in equivalence checkingNadrieril2019-05-051-80/+2
|
* Implement alpha-normalizationNadrieril2019-05-054-69/+194
| | | | Closes #12
* Clarify match_vars implementationNadrieril2019-05-041-12/+12
|
* subst_shift now correctly preserves WHNFNadrieril2019-05-041-26/+24
|
* We actually don't need SubExpr::shift anymoreNadrieril2019-05-041-4/+5
|
* Revert "Make SubExpr generic in the variable labels type"Nadrieril2019-05-047-102/+85
| | | | This reverts commit 4c159640e5ee77ffa48b85a5bffa56350cf933ef.
* Make SubExpr generic in the variable labels typeNadrieril2019-05-047-85/+102
|
* Keep Spans through normalization and typecheckingNadrieril2019-05-043-36/+39
|
* Thread Spans through the ASTNadrieril2019-05-041-1/+1
|
* Move `Note`s into the spine of the ASTNadrieril2019-05-042-9/+5
|
* Remove dummy lifetimesNadrieril2019-05-048-268/+203
|
* rustfmtNadrieril2019-05-044-4/+4
|
* Rename dhall_generator to dhall_proc_macrosNadrieril2019-05-046-13/+13
|
* Rename dhall_core to dhall_syntaxNadrieril2019-05-0411-33/+33
|
* No need for extra stack in tests anymoreNadrieril2019-05-032-13/+6
|
* Remove some deprecated functionsNadrieril2019-05-033-124/+30
|
* Rework normalization to reduce expensive Value copyingNadrieril2019-05-031-457/+494
|
* Apply builtin arguments lazilyNadrieril2019-05-031-143/+165
|
* Avoid unnecessary RefCell::borrow_mutNadrieril2019-05-032-20/+37
|
* Update dhall-lang submoduleNadrieril2019-05-021-0/+1
|
* Update normalization testsNadrieril2019-05-021-11/+12
|
* Update dhall-lang submoduleNadrieril2019-05-021-16/+25
|
* Update dhall-lang submoduleNadrieril2019-05-021-1/+1
|
* Typecheck text interpolationNadrieril2019-05-021-3/+16
|
* Typecheck missing builtin casesNadrieril2019-05-021-29/+47
|
* Remove shift0Nadrieril2019-05-022-32/+26
|
* Instead of possibly nonexistent Type, treat Sort speciallyNadrieril2019-05-027-242/+282
|
* Store Thunk in NormalizedNadrieril2019-05-025-41/+44
|
* TweaksNadrieril2019-05-023-76/+78
|
* Remove now useless TypedOrType typeNadrieril2019-04-301-86/+34
|
* Fix NF tracking errorNadrieril2019-04-301-2/+3
|
* Fix shifting. This completely destroys sharing so performance is dead.Nadrieril2019-04-301-3/+7
|
* Lazily process unnormalizable expressionNadrieril2019-04-301-9/+36
|
* Avoid some rewrapping of thunksNadrieril2019-04-302-36/+51
|
* Mutate thunk contents directly if sole ownerNadrieril2019-04-301-2/+8
|
* Normalize mutablyNadrieril2019-04-301-30/+120
|
* Don't borrow from thunk more than necessaryNadrieril2019-04-302-37/+62
|
* Pass references when possibleNadrieril2019-04-303-90/+121
|
* Merge Typed and PartiallyNormalizedNadrieril2019-04-303-124/+94
|
* Store a Thunk in TypedNadrieril2019-04-304-40/+22
|
* Store thunks in the normalization contextNadrieril2019-04-301-12/+13
|
* Store thunks behind Rc<RefCell<_>> to ensure minimal computationNadrieril2019-04-302-81/+160
|
* Remove NF/WHNF distinction at runtimeNadrieril2019-04-293-100/+79
|
* Make NF and WHNF custom types instead of aliasesNadrieril2019-04-291-3/+5
|
* Don't shift by mutable refNadrieril2019-04-291-93/+106
|
* Store thunk in Value::LambdaNadrieril2019-04-291-19/+17
|
* Allow representing normal form as a semantic valueNadrieril2019-04-293-249/+368
|
* Don't need to store original expression in TypeErrorNadrieril2019-04-292-59/+14
|