summaryrefslogtreecommitdiff
path: root/dhall/src/lib.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* chore: fix clippy warningsNadrieril2021-03-091-0/+1
|
* release: dhall version 0.10.0Nadrieril2021-02-041-1/+1
|
* Soothe clippyNadrieril2020-12-071-0/+1
|
* Resolve imports and alternatives outside of the ast traversalNadrieril2020-12-071-1/+1
|
* Unify `skip_resolve_expr` with normal resolutionNadrieril2020-12-071-2/+13
|
* Thread cx everywhere else imports are readNadrieril2020-12-071-33/+9
|
* Thread cx through normalizationNadrieril2020-12-071-41/+35
|
* Thread cx through typecheckNadrieril2020-12-071-3/+8
|
* Make global store of imports and import resultsNadrieril2020-12-071-0/+3
|
* release: dhall version 0.9.0Nadrieril2020-11-201-1/+1
|
* Untangle caching codeNadrieril2020-11-011-2/+3
|
* release: dhall version 0.8.0Nadrieril2020-10-281-1/+1
|
* Release dhall version 0.7.4Nadrieril2020-10-251-1/+1
|
* Release dhall version 0.7.2Nadrieril2020-10-241-1/+1
|
* Release dhall version 0.7.0Nadrieril2020-09-151-1/+1
|
* Release dhall version 0.6.0Nadrieril2020-08-051-1/+1
|
* refactor: remove old test harnessNadrieril2020-06-241-2/+0
|
* Release dhall version 0.5.3Nadrieril2020-05-301-1/+1
|
* Release dhall version 0.5.2Nadrieril2020-04-121-1/+1
|
* Release dhall version 0.5.1Nadrieril2020-04-091-1/+1
|
* Move builtins module up a levelNadrieril2020-04-061-0/+1
|
* Extract operation-related code to a new moduleNadrieril2020-04-061-0/+1
|
* Release dhall version 0.5.0Nadrieril2020-04-051-1/+1
|
* Fix clippy warningsNadrieril2020-04-051-0/+3
|
* Introduce option builderNadrieril2020-03-311-0/+3
|
* Move Value, SimpleValue and SimpleType to serdeNadrieril2020-03-311-63/+3
|
* Brutally make all of dhall pubNadrieril2020-03-311-15/+15
|
* Nir::normalize isn't usefulNadrieril2020-03-311-1/+3
| | | | | It pretends to normalize but actually can't normalize under lambdas. The correct way to normalize a Nir is to convert it to Hir.
* Move conversion to SimpleVal/Ty to simple moduleNadrieril2020-03-311-2/+2
|
* Remove top-level Expr aliasesNadrieril2020-03-311-13/+9
|
* Limit dependency on NormalizedNadrieril2020-03-311-66/+10
|
* Remove Normalized and friends from public APINadrieril2020-03-311-28/+14
|
* Add new Value type in APINadrieril2020-03-311-4/+60
|
* Add SimpleType to mirror SimpleValueNadrieril2020-03-311-1/+5
|
* Add SimpleValue type to facilitate deserializationNadrieril2020-03-311-2/+8
|
* Update to latest pest_consume to remove spurious clippy warningNadrieril2020-03-181-1/+0
|
* Cut releaseNadrieril2020-03-181-1/+1
|
* Remove never_type featureNadrieril2020-03-171-1/+0
|
* Run clippyNadrieril2020-03-171-6/+4
|
* Implement remote imports and cleanup import chainingNadrieril2020-03-051-2/+6
|
* Cut releaseNadrieril2020-02-211-1/+1
|
* Avoid re-typechecking after importNadrieril2020-02-191-0/+3
|
* Remove useless `normalize` option from ToExprOptionsNadrieril2020-02-181-15/+4
|
* Borrow relevant Hir from TirNadrieril2020-02-181-7/+18
|
* Rename Value to NirNadrieril2020-02-171-19/+17
|
* Rename TyExpr to TirNadrieril2020-02-171-4/+2
|
* Introduce proper Type structNadrieril2020-02-151-1/+1
|
* TyExpr always carries a typeNadrieril2020-02-131-1/+1
|
* Remove the Embed variant from ExprKindNadrieril2020-02-111-4/+4
|
* Take Hir for typecheckNadrieril2020-02-091-3/+7
|