summaryrefslogtreecommitdiff
path: root/dhall (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Capture `Span`s in the AST and thread them through Parsed and ResolvedNadrieril2019-04-123-15/+10
|
* Thread lifetimes through other newtypesNadrieril2019-04-118-156/+175
| | | | Closes #55
* Add lifetime parameters to Parsed and ResolvedNadrieril2019-04-115-23/+52
| | | | Future-proofing
* Remove type parameter from TypeErrorNadrieril2019-04-113-28/+27
|
* Respect import boundariesNadrieril2019-04-115-49/+63
| | | | Closes #54
* Be more civilized when typecheck case unimplementedNadrieril2019-04-111-2/+3
|
* Ditch quick_error because it doesn't support generic parametersNadrieril2019-04-113-35/+50
|
* Improve simple type handling in typecheckNadrieril2019-04-112-37/+39
|
* Abstract get_type() into a traitNadrieril2019-04-116-49/+96
|
* Handle untyped case differently from the type of SortNadrieril2019-04-114-75/+107
| | | | Closes #59
* `Some` is not a builtin, it's a keywordNadrieril2019-04-111-1/+0
| | | | Closes #58
* Remove premature #[inline(always)]Nadrieril2019-04-111-18/+0
| | | | Closes #57
* Add basic deserialization supportNadrieril2019-04-116-12/+95
| | | | Closes #13
* Simplify test harnessNadrieril2019-04-104-121/+99
|
* Display error messagesNadrieril2019-04-101-0/+5
|
* Allow providing type for typechecking in APINadrieril2019-04-104-20/+21
|
* Mild cleanup importsNadrieril2019-04-102-18/+16
|
* Cleanup error handlingNadrieril2019-04-105-56/+51
| | | | Closes #41
* Split traits module into submodulesNadrieril2019-04-103-50/+47
|
* Add error submoduleNadrieril2019-04-104-8/+8
|
* Write main lib docNadrieril2019-04-101-0/+106
|
* Prepare for serde supportNadrieril2019-04-103-0/+11
|
* Add a new Deserialize trait for reading dhall valuesNadrieril2019-04-102-0/+64
|
* s/load_from/parse/Nadrieril2019-04-103-20/+20
|
* Add SimpleType and SimpeStaticType. Derive the latterNadrieril2019-04-105-61/+147
|
* Update dhall-lang submoduleNadrieril2019-04-091-1/+0
|
* clippyNadrieril2019-04-084-31/+40
|
* Limit public APINadrieril2019-04-083-14/+8
| | | | Closes #53
* Rename spec testsNadrieril2019-04-084-601/+601
|
* Move spec tests into the relevant filesNadrieril2019-04-089-659/+668
|
* TweaksNadrieril2019-04-072-4/+2
|
* Restrict public APINadrieril2019-04-077-71/+104
| | | | Closes #20
* FixNadrieril2019-04-071-0/+1
|
* Use macros in typecheck; much cleanerNadrieril2019-04-071-132/+125
|
* Universe hierarchy is overkillNadrieril2019-04-072-77/+63
|
* More typecheckNadrieril2019-04-071-66/+89
|
* Avoid constructing exprs manually when possibleNadrieril2019-04-075-19/+24
|
* Store Normalized in type errorNadrieril2019-04-071-46/+66
|
* Augment stack size for typecheck testsNadrieril2019-04-073-8/+30
|
* Handle universe error properlyNadrieril2019-04-071-35/+49
|
* Put a Cow in TypeNadrieril2019-04-073-76/+84
|
* More typecheckNadrieril2019-04-071-78/+86
|
* More improvements to typecheckNadrieril2019-04-061-133/+114
|
* Store the whole type hierarchy in a TypeNadrieril2019-04-062-110/+167
|
* Add Sort type universeNadrieril2019-04-062-9/+12
|
* Start taking Typed seriouslyNadrieril2019-04-063-111/+135
|
* Thread Typed through type_withNadrieril2019-04-063-66/+67
|
* Move binary decoding to new APINadrieril2019-04-064-32/+66
|
* Massage import loading into new APINadrieril2019-04-063-51/+83
| | | | Closes #9
* Define some newtypes for ExprNadrieril2019-04-062-8/+37
| | | | Closes #50