summaryrefslogtreecommitdiff
path: root/dhall/src/normalize.rs (unfollow)
Commit message (Expand)AuthorFilesLines
2019-05-06Reorganize dhall into a phase structureNadrieril1-1909/+0
2019-05-06Merge TypedInternal and TypedNadrieril1-21/+5
2019-05-05s/DoubleVar/AlphaVar/Nadrieril1-33/+33
2019-05-05Implement normalization simplificationsNadrieril1-10/+15
2019-05-05Preserve text WHNF on concatenationNadrieril1-9/+9
2019-05-05WHNF for TextLit means no interpolations of text and strict alternationNadrieril1-41/+63
2019-05-05Fix Integer equalityNadrieril1-4/+5
2019-05-05Make Value equality be alpha-equivalenceNadrieril1-13/+86
2019-05-05Implement alpha-normalizationNadrieril1-51/+163
2019-05-04subst_shift now correctly preserves WHNFNadrieril1-26/+24
2019-05-04We actually don't need SubExpr::shift anymoreNadrieril1-4/+5
2019-05-04Revert "Make SubExpr generic in the variable labels type"Nadrieril1-26/+22
2019-05-04Make SubExpr generic in the variable labels typeNadrieril1-22/+26
2019-05-04Keep Spans through normalization and typecheckingNadrieril1-7/+7
2019-05-04Move `Note`s into the spine of the ASTNadrieril1-8/+4
2019-05-04Remove dummy lifetimesNadrieril1-35/+15
2019-05-04rustfmtNadrieril1-1/+1
2019-05-04Rename dhall_generator to dhall_proc_macrosNadrieril1-1/+1
2019-05-04Rename dhall_core to dhall_syntaxNadrieril1-4/+4
2019-05-03Remove some deprecated functionsNadrieril1-120/+26
2019-05-03Rework normalization to reduce expensive Value copyingNadrieril1-457/+494
2019-05-03Apply builtin arguments lazilyNadrieril1-143/+165
2019-05-03Avoid unnecessary RefCell::borrow_mutNadrieril1-6/+33
2019-05-02Update normalization testsNadrieril1-11/+12
2019-05-02Update dhall-lang submoduleNadrieril1-16/+25
2019-05-02Remove shift0Nadrieril1-18/+21
2019-05-02Instead of possibly nonexistent Type, treat Sort speciallyNadrieril1-25/+25
2019-05-02Store Thunk in NormalizedNadrieril1-5/+10
2019-05-02TweaksNadrieril1-45/+39
2019-04-30Fix NF tracking errorNadrieril1-2/+3
2019-04-30Fix shifting. This completely destroys sharing so performance is dead.Nadrieril1-3/+7
2019-04-30Lazily process unnormalizable expressionNadrieril1-9/+36
2019-04-30Avoid some rewrapping of thunksNadrieril1-34/+49
2019-04-30Mutate thunk contents directly if sole ownerNadrieril1-2/+8
2019-04-30Normalize mutablyNadrieril1-30/+120
2019-04-30Don't borrow from thunk more than necessaryNadrieril1-0/+4
2019-04-30Pass references when possibleNadrieril1-64/+87
2019-04-30Merge Typed and PartiallyNormalizedNadrieril1-42/+32
2019-04-30Store a Thunk in TypedNadrieril1-19/+5
2019-04-30Store thunks in the normalization contextNadrieril1-12/+13
2019-04-30Store thunks behind Rc<RefCell<_>> to ensure minimal computationNadrieril1-77/+159
2019-04-29Remove NF/WHNF distinction at runtimeNadrieril1-93/+72
2019-04-29Make NF and WHNF custom types instead of aliasesNadrieril1-3/+5
2019-04-29Don't shift by mutable refNadrieril1-93/+106
2019-04-29Store thunk in Value::LambdaNadrieril1-19/+17
2019-04-29Allow representing normal form as a semantic valueNadrieril1-226/+340
2019-04-29Properly substitute when typing AppNadrieril1-12/+173
2019-04-28Use PartiallyNormalized throughout typecheckingNadrieril1-4/+8
2019-04-27Move Pi to WHNFNadrieril1-0/+10
2019-04-27Replace TypeInternal::RecordType with WHNF::RecordTypeNadrieril1-4/+17