summaryrefslogtreecommitdiff
path: root/dhall/src/semantics (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* oopsNadrieril2020-04-061-1/+1
|
* Avoid a few allocationsNadrieril2020-04-062-16/+20
|
* Factor our operations in normalizationNadrieril2020-04-062-300/+257
|
* Factor out operations in typecheckNadrieril2020-04-061-415/+436
|
* Split off operations from main expr enumNadrieril2020-04-065-141/+171
|
* Fix import bugNadrieril2020-04-051-9/+11
|
* Check code hashes in importNadrieril2020-04-052-9/+38
|
* Fix clippy warningsNadrieril2020-04-052-9/+6
|
* Reorganize API and internals of serde_dhall a bitNadrieril2020-03-311-1/+1
|
* Introduce option builderNadrieril2020-03-312-5/+11
|
* Move Value, SimpleValue and SimpleType to serdeNadrieril2020-03-311-4/+1
|
* Brutally make all of dhall pubNadrieril2020-03-3116-76/+76
|
* Nir::normalize isn't usefulNadrieril2020-03-313-89/+0
| | | | | It pretends to normalize but actually can't normalize under lambdas. The correct way to normalize a Nir is to convert it to Hir.
* Improve handling of builtin types in NirNadrieril2020-03-314-61/+55
|
* Move conversion to SimpleVal/Ty to simple moduleNadrieril2020-03-311-81/+0
|
* Remove top-level Expr aliasesNadrieril2020-03-315-22/+16
|
* Rename LitKind to NumKindNadrieril2020-03-314-72/+72
|
* Add new Value type in APINadrieril2020-03-311-2/+2
|
* Add SimpleType to mirror SimpleValueNadrieril2020-03-311-1/+47
|
* Add SimpleValue type to facilitate deserializationNadrieril2020-03-311-0/+34
|
* Remove never_type featureNadrieril2020-03-172-16/+15
|
* Run clippyNadrieril2020-03-179-53/+54
|
* Implement conservative sanity checkingNadrieril2020-03-052-56/+76
|
* Cache imports correctlyNadrieril2020-03-052-19/+19
|
* Implement remote imports and cleanup import chainingNadrieril2020-03-052-81/+139
|
* Implement remote `as Location` resolutionNadrieril2020-03-051-1/+12
|
* Implement `as Text` importsNadrieril2020-03-052-4/+22
|
* Refactor resolve a bitNadrieril2020-03-051-80/+76
|
* Implement `missing` and `env:VAR` importsNadrieril2020-03-051-8/+16
|
* Implement `as Location` importsNadrieril2020-03-052-30/+102
|
* Implement some normalization simplificationsNadrieril2020-03-051-76/+80
|
* Normalization for ProjectionByExprBasile Henry2020-03-021-3/+34
|
* Expose fewer pub thingsNadrieril2020-02-191-2/+5
|
* Avoid re-typechecking after importNadrieril2020-02-195-14/+23
|
* Discard import headers while we don't use themNadrieril2020-02-182-11/+8
|
* Remove useless `normalize` option from ToExprOptionsNadrieril2020-02-182-11/+2
|
* Borrow relevant Hir from TirNadrieril2020-02-183-33/+32
|
* Remove spans from NirNadrieril2020-02-171-15/+7
| | | | | That info was too unreliable: we need clean tracking mechanisms if we want to improve error messages
* Rename Value to NirNadrieril2020-02-1710-381/+359
|
* Rename TyExpr to TirNadrieril2020-02-174-27/+27
|
* Factor out desugaring from resolveNadrieril2020-02-171-22/+31
|
* Extract resolve-relevant envs togetherNadrieril2020-02-174-112/+118
|
* Move hir and resolve into a moduleNadrieril2020-02-175-2/+6
|
* Avoid recomputing universes in tckNadrieril2020-02-163-55/+73
|
* Oops, leftover #![allow(dead_code)]Nadrieril2020-02-161-17/+1
|
* Start requiring Universe to build a TypeNadrieril2020-02-163-176/+206
|
* Introduce proper Type structNadrieril2020-02-154-56/+120
|
* Desugar Completion during resolutionNadrieril2020-02-154-52/+49
|
* Factor some tck code to avoid needing get_type_tyexprNadrieril2020-02-155-52/+88
|
* OopsNadrieril2020-02-142-16/+14
|