summaryrefslogtreecommitdiff
path: root/dhall/src/normalize.rs (follow)
Commit message (Expand)AuthorAgeFilesLines
* Reorganize dhall into a phase structureNadrieril2019-05-061-1909/+0
* Merge TypedInternal and TypedNadrieril2019-05-061-21/+5
* s/DoubleVar/AlphaVar/Nadrieril2019-05-051-33/+33
* Implement normalization simplificationsNadrieril2019-05-051-10/+15
* Preserve text WHNF on concatenationNadrieril2019-05-051-9/+9
* WHNF for TextLit means no interpolations of text and strict alternationNadrieril2019-05-051-41/+63
* Fix Integer equalityNadrieril2019-05-051-4/+5
* Make Value equality be alpha-equivalenceNadrieril2019-05-051-13/+86
* Implement alpha-normalizationNadrieril2019-05-051-51/+163
* 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-041-26/+22
* Make SubExpr generic in the variable labels typeNadrieril2019-05-041-22/+26
* Keep Spans through normalization and typecheckingNadrieril2019-05-041-7/+7
* Move `Note`s into the spine of the ASTNadrieril2019-05-041-8/+4
* Remove dummy lifetimesNadrieril2019-05-041-35/+15
* rustfmtNadrieril2019-05-041-1/+1
* Rename dhall_generator to dhall_proc_macrosNadrieril2019-05-041-1/+1
* Rename dhall_core to dhall_syntaxNadrieril2019-05-041-4/+4
* Remove some deprecated functionsNadrieril2019-05-031-120/+26
* 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-031-6/+33
* Update normalization testsNadrieril2019-05-021-11/+12
* Update dhall-lang submoduleNadrieril2019-05-021-16/+25
* Remove shift0Nadrieril2019-05-021-18/+21
* Instead of possibly nonexistent Type, treat Sort speciallyNadrieril2019-05-021-25/+25
* Store Thunk in NormalizedNadrieril2019-05-021-5/+10
* TweaksNadrieril2019-05-021-45/+39
* 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-301-34/+49
* 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-301-0/+4
* Pass references when possibleNadrieril2019-04-301-64/+87
* Merge Typed and PartiallyNormalizedNadrieril2019-04-301-42/+32
* Store a Thunk in TypedNadrieril2019-04-301-19/+5
* Store thunks in the normalization contextNadrieril2019-04-301-12/+13
* Store thunks behind Rc<RefCell<_>> to ensure minimal computationNadrieril2019-04-301-77/+159
* Remove NF/WHNF distinction at runtimeNadrieril2019-04-291-93/+72
* 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-291-226/+340
* Properly substitute when typing AppNadrieril2019-04-291-12/+173
* Use PartiallyNormalized throughout typecheckingNadrieril2019-04-281-4/+8
* Move Pi to WHNFNadrieril2019-04-271-0/+10
* Replace TypeInternal::RecordType with WHNF::RecordTypeNadrieril2019-04-271-4/+17