summaryrefslogtreecommitdiff
path: root/dhall/src/typecheck.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Handle nullary union variantsNadrieril2019-04-161-1/+1
| | | | Closes #36
* Prepare for nullary union variantsNadrieril2019-04-161-8/+38
|
* Fix union constructor typecheckingNadrieril2019-04-161-17/+24
|
* Typecheck union constructorNadrieril2019-04-161-6/+15
|
* Typecheck unionsNadrieril2019-04-161-16/+26
|
* Typecheck higher-kinded recordsNadrieril2019-04-161-21/+33
|
* Remove one more instance of duplicate typecheckingNadrieril2019-04-161-1/+1
|
* Remove higher-kinded type noise in TypeNadrieril2019-04-161-36/+54
|
* Avoid some work duplication in typecheckingNadrieril2019-04-161-48/+56
|
* Handle empty optionals correctlyNadrieril2019-04-151-0/+14
| | | | Closes #78
* clippyNadrieril2019-04-141-9/+8
|
* Implement `let` type synonymsNadrieril2019-04-141-51/+25
|
* Implement ListAppend typecheckingNadrieril2019-04-131-2/+20
|
* Various typecheck improvementsNadrieril2019-04-131-83/+93
|
* Don't need dhall::expr!() for builtinsNadrieril2019-04-131-15/+20
|
* Split typecheck into two phasesNadrieril2019-04-131-202/+214
|
* Restrict public API to its most minimal expressionNadrieril2019-04-121-13/+12
|
* Remove any remains from the standard or `dhall-haskell`Nadrieril2019-04-121-2/+2
|
* Capture `Span`s in the AST and thread them through Parsed and ResolvedNadrieril2019-04-121-3/+3
|
* Thread lifetimes through other newtypesNadrieril2019-04-111-57/+78
| | | | Closes #55
* Add lifetime parameters to Parsed and ResolvedNadrieril2019-04-111-1/+1
| | | | Future-proofing
* Remove type parameter from TypeErrorNadrieril2019-04-111-19/+18
|
* Respect import boundariesNadrieril2019-04-111-13/+18
| | | | Closes #54
* Be more civilized when typecheck case unimplementedNadrieril2019-04-111-2/+3
|
* Improve simple type handling in typecheckNadrieril2019-04-111-37/+34
|
* Abstract get_type() into a traitNadrieril2019-04-111-44/+10
|
* Handle untyped case differently from the type of SortNadrieril2019-04-111-70/+101
| | | | Closes #59
* Remove premature #[inline(always)]Nadrieril2019-04-111-18/+0
| | | | Closes #57
* Simplify test harnessNadrieril2019-04-101-4/+4
|
* Allow providing type for typechecking in APINadrieril2019-04-101-0/+5
|
* Add SimpleType and SimpeStaticType. Derive the latterNadrieril2019-04-101-3/+18
|
* clippyNadrieril2019-04-081-3/+2
|
* Limit public APINadrieril2019-04-081-7/+2
| | | | Closes #53
* Rename spec testsNadrieril2019-04-081-276/+276
|
* Move spec tests into the relevant filesNadrieril2019-04-081-0/+303
|
* TweaksNadrieril2019-04-071-1/+2
|
* Restrict public APINadrieril2019-04-071-3/+6
| | | | Closes #20
* Use macros in typecheck; much cleanerNadrieril2019-04-071-132/+125
|
* Universe hierarchy is overkillNadrieril2019-04-071-73/+59
|
* More typecheckNadrieril2019-04-071-66/+89
|
* Avoid constructing exprs manually when possibleNadrieril2019-04-071-18/+20
|
* Store Normalized in type errorNadrieril2019-04-071-46/+66
|
* Augment stack size for typecheck testsNadrieril2019-04-071-0/+12
|
* Handle universe error properlyNadrieril2019-04-071-35/+49
|
* Put a Cow in TypeNadrieril2019-04-071-70/+78
|
* More typecheckNadrieril2019-04-071-78/+86
|
* More improvements to typecheckNadrieril2019-04-061-133/+114
|
* Store the whole type hierarchy in a TypeNadrieril2019-04-061-101/+159
|
* Add Sort type universeNadrieril2019-04-061-3/+6
|
* Start taking Typed seriouslyNadrieril2019-04-061-106/+133
|