summaryrefslogtreecommitdiff
path: root/dhall (unfollow)
Commit message (Expand)AuthorFilesLines
2019-05-04Move `Note`s into the spine of the ASTNadrieril2-9/+5
2019-05-04Remove dummy lifetimesNadrieril8-268/+203
2019-05-04rustfmtNadrieril4-4/+4
2019-05-04Rename dhall_generator to dhall_proc_macrosNadrieril6-13/+13
2019-05-04Rename dhall_core to dhall_syntaxNadrieril11-33/+33
2019-05-03No need for extra stack in tests anymoreNadrieril2-13/+6
2019-05-03Remove some deprecated functionsNadrieril3-124/+30
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_mutNadrieril2-20/+37
2019-05-02Update dhall-lang submoduleNadrieril1-0/+1
2019-05-02Update normalization testsNadrieril1-11/+12
2019-05-02Update dhall-lang submoduleNadrieril1-16/+25
2019-05-02Update dhall-lang submoduleNadrieril1-1/+1
2019-05-02Typecheck text interpolationNadrieril1-3/+16
2019-05-02Typecheck missing builtin casesNadrieril1-29/+47
2019-05-02Remove shift0Nadrieril2-32/+26
2019-05-02Instead of possibly nonexistent Type, treat Sort speciallyNadrieril7-242/+282
2019-05-02Store Thunk in NormalizedNadrieril5-41/+44
2019-05-02TweaksNadrieril3-76/+78
2019-04-30Remove now useless TypedOrType typeNadrieril1-86/+34
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 thunksNadrieril2-36/+51
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 necessaryNadrieril2-37/+62
2019-04-30Pass references when possibleNadrieril3-90/+121
2019-04-30Merge Typed and PartiallyNormalizedNadrieril3-124/+94
2019-04-30Store a Thunk in TypedNadrieril4-40/+22
2019-04-30Store thunks in the normalization contextNadrieril1-12/+13
2019-04-30Store thunks behind Rc<RefCell<_>> to ensure minimal computationNadrieril2-81/+160
2019-04-29Remove NF/WHNF distinction at runtimeNadrieril3-100/+79
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 valueNadrieril3-249/+368
2019-04-29Don't need to store original expression in TypeErrorNadrieril2-59/+14
2019-04-29Properly substitute when typing AppNadrieril2-57/+218
2019-04-28Use PartiallyNormalized throughout typecheckingNadrieril3-93/+95
2019-04-27Move Pi to WHNFNadrieril2-36/+51
2019-04-27BuiltinsNadrieril2-30/+11
2019-04-27Replace TypeInternal::UnionType with WHNF::UnionTypeNadrieril1-23/+23
2019-04-27Replace TypeInternal::RecordType with WHNF::RecordTypeNadrieril2-32/+68
2019-04-27Rework TypeInternalNadrieril1-83/+72
2019-04-27Store thunks uniformly in WHNFNadrieril1-59/+42
2019-04-27Abstract out thunks in type positionNadrieril1-22/+64
2019-04-27Rename Now to ThunkNadrieril1-45/+44
2019-04-27Define new intermediate expression typeNadrieril2-19/+43