summaryrefslogtreecommitdiff
path: root/dhall (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Handle nullary union variantsNadrieril2019-04-162-6/+6
| | | | Closes #36
* Prepare for nullary union variantsNadrieril2019-04-162-10/+58
|
* Improve test error ergonomicsNadrieril2019-04-161-2/+8
|
* 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-162-1/+16
|
* Remove higher-kinded type noise in TypeNadrieril2019-04-164-42/+67
|
* Revert "Preserve notes when normalizing"Nadrieril2019-04-161-13/+6
| | | | This reverts commit fd9e37dfbc49e850a784fa3e907bd0a358d91e28.
* Preserve notes when normalizingNadrieril2019-04-161-6/+13
|
* Naming tweaksNadrieril2019-04-162-12/+12
|
* Avoid some work duplication in typecheckingNadrieril2019-04-162-51/+56
|
* Merge pull request #75 from basile-henry/import-cyclesNadrieril Feneanar2019-04-151-6/+32
|\ | | | | Handle import cycles
| * Error on import cyclesBasile Henry2019-04-151-6/+32
| |
* | Handle empty optionals correctlyNadrieril2019-04-154-3/+19
|/ | | | Closes #78
* rustfmtNadrieril2019-04-151-4/+4
|
* Namespace deserialization functions in a `de` submoduleNadrieril2019-04-144-45/+49
| | | | Closes #73
* clippyNadrieril2019-04-145-17/+15
|
* Add import testsNadrieril2019-04-142-0/+40
| | | | Closes #71
* Naming nitpickNadrieril2019-04-141-5/+5
|
* Cache importsBasile Henry2019-04-141-12/+34
|
* Transform more mapping functions to use the Visitor traitNadrieril2019-04-141-1/+1
|
* Implement `let` type synonymsNadrieril2019-04-141-51/+25
|
* Fix a tiny normalization bugNadrieril2019-04-141-1/+1
|
* Implement ListAppend typecheckingNadrieril2019-04-131-2/+20
|
* Fix `let` parsingNadrieril2019-04-131-0/+1
|
* Improve error display on test failureNadrieril2019-04-131-10/+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
|
* docs: document import resolution rootNadrieril2019-04-131-4/+6
|
* Document all of the APINadrieril2019-04-134-10/+60
| | | | Closes #64
* Remove some leftover dependenciesNadrieril2019-04-121-1/+0
|
* Restrict public API to its most minimal expressionNadrieril2019-04-128-101/+111
|
* Clarify licenseNadrieril2019-04-121-0/+1
| | | | Closes #61
* 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-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