summaryrefslogtreecommitdiff
path: root/dhall (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
| * Rework ValueInternal and clarify invariants around ValueFNadrieril2019-08-184-78/+85
| |
| * s/Thunk/Value/Nadrieril2019-08-178-925/+927
| |
| * Share type alongside the value in a thunkNadrieril2019-08-162-40/+110
| |
| * Use generic Shift/Subst implsNadrieril2019-08-163-192/+186
| |
| * Store type in ThunkNadrieril2019-08-162-58/+71
| |
| * Remove Const-optimization for nowNadrieril2019-08-161-14/+5
| |
| * s/Value/ValueF/Nadrieril2019-08-167-337/+343
| |
| * Try to minimize untyped TypedThunksNadrieril2019-08-163-32/+42
| |
| * fixup! No need for generic Context anymoreNadrieril2019-08-161-1/+1
| |
| * Free variables don't exist anymoreNadrieril2019-08-161-21/+13
| |
| * No need for generic Context anymoreNadrieril2019-08-161-75/+38
| |
| * Remove dead codeNadrieril2019-08-167-114/+27
| |
| * Typecheck before normalizing in testsNadrieril2019-08-163-17/+21
| |
| * Avoid capture when typechecking union constructorNadrieril2019-08-161-2/+1
| |
| * Reduce api surface of dhall crateNadrieril2019-08-1610-98/+86
| | | | | | | | Helps detect unused code
| * Use `!` type instead of custom empty typeNadrieril2019-08-161-3/+3
| |
| * rustfmtNadrieril2019-08-151-2/+1
| |
| * Disable some unused unstable featuresNadrieril2019-08-155-11/+4
| |
| * Fix variable substitutionNadrieril2019-08-151-4/+2
| | | | | | | | I have no idea how this didn't get caught before
| * Use precedence climbing to parse expressions with operatorsNadrieril2019-08-151-2/+3
| | | | | | | | This speeds up parsing around 30%
| * Custom Debug impls to improve debug legibilityNadrieril2019-08-152-3/+37
| |
| * Remove special closures from ValueNadrieril2019-08-153-136/+62
| | | | | | | | Instead construct their values directly
| * Fix bug in shifting contextsNadrieril2019-08-151-1/+10
| |
| * Fix typo in normalizationNadrieril2019-08-141-1/+1
| |
| * Implement inline headers parsingNadrieril2019-08-134-54/+28
| |
| * Implement Hash for ParsedSubExprNadrieril2019-08-132-23/+34
| |
| * Store Imports in their own node instead of in EmbedNadrieril2019-08-134-13/+25
| |
| * Considerably simplify Embed handlingNadrieril2019-08-134-10/+4
| |
| * Stop tracking the absence of Embed values at the type levelNadrieril2019-08-135-30/+28
| |
| * No need to track the absence of `Span`s at the type levelNadrieril2019-08-134-39/+36
| |
| * TyposNadrieril2019-08-131-2/+2
| |
| * s/TypeThunk/TypedThunk/gNadrieril2019-08-135-86/+96
| |
| * Swap Typed and TypeThunkNadrieril2019-08-132-91/+129
| |
| * Add new error type for serde_dhallNadrieril2019-08-132-13/+1
| |
| * Move api into its own crateNadrieril2019-08-138-505/+16
| |
* | Remove the notion of Directory and have File be the vector of componentsFintan Halpenny2019-09-021-13/+5
| |
* | Merge remote-tracking branch 'origin/master' into fintan/canonicalizeFintanH2019-08-1212-763/+717
|\|
| * Remove ensure_... macros in typecheckNadrieril2019-08-121-115/+89
| | | | | | | | They weren't worth it
| * Fix a testNadrieril2019-08-121-2/+0
| |
| * Remove dhall::expr!() macroNadrieril2019-08-106-61/+137
| | | | | | | | It's a lot of hassle for not a lot of benefit
| * Update dhall-lang submoduleNadrieril2019-08-102-4/+22
| |
| * Update dhall-lang submoduleNadrieril2019-08-082-0/+4
| |
| * Add support for dependent typesNadrieril2019-08-088-27/+87
| |
| * Update dhall-lang submoduleNadrieril2019-08-072-0/+4
| |
| * Flatten nested let bindingsNadrieril2019-08-072-6/+43
| |
| * Normalize field selection further by inspecting the argumentNadrieril2019-08-071-0/+12
| |
| * Remove an annoying redundancy in the test harnessNadrieril2019-08-073-50/+33
| |
| * Add binary-decode testsNadrieril2019-08-073-3/+74
| |
| * Add truncated Natural subtractionNadrieril2019-08-072-0/+11
| |
| * Remove union literals from the languageNadrieril2019-08-074-37/+6
| |