summaryrefslogtreecommitdiff
path: root/dhall/src/semantics/resolve (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Thread cx through typecheckNadrieril2020-12-072-6/+9
|
* Improve ergonomics of `Ctxt`Nadrieril2020-12-071-10/+9
|
* Make global store of imports and import resultsNadrieril2020-12-072-62/+88
|
* An import location is not independent from the import modeNadrieril2020-12-061-102/+100
|
* Prepare `ImportLocation` for more fieldsNadrieril2020-12-061-32/+69
|
* Implement type checking for With opBasile Henry2020-11-011-30/+2
|
* fix: clippyNadrieril2020-11-012-21/+18
|
* feat: add location to import error messagesNadrieril2020-11-011-2/+10
| | | | This is crude but helpful. See #40
* Ensure that the hash always gets checkedNadrieril2020-11-012-19/+40
|
* Typed and TypedHir are the sameNadrieril2020-11-013-33/+26
|
* Untangle caching codeNadrieril2020-11-013-648/+128
|
* Store file cache in ImportEnvNadrieril2020-11-013-19/+20
|
* Untangle ImportEnv::handle_importNadrieril2020-11-012-29/+37
|
* Make reqwest an optional dependencyBasile Henry2020-10-101-1/+5
| | | | | | | | | This adds a feature to the Cargo.toml to be able to control if dhall depends on reqwest. This makes it possible to build dhall-rust for any arch (not just wasm32) without depending on reqwest. To disable reqwest as a dependency, we can now use `default-features = false` when adding the dhall dependency. Closes #169
* spec: Enable `with` optimizationsNadrieril2020-09-141-2/+30
|
* fix: panic on remote import on wasmNadrieril2020-06-241-4/+2
| | | | Sadly we would need proper async support for that to work
* Refactor cache path resolutionNadrieril2020-05-301-62/+21
|
* Fix cache path resolution on wasmNadrieril2020-05-301-0/+7
|
* Make reqwest build on wasmNadrieril2020-05-301-3/+13
|
* test: Add remaining tests for cachefteychene2020-05-151-0/+398
|
* fixup! test: Add some unit tests for cachefteychene2020-05-151-30/+55
|
* fixup! test: Add some unit tests for cachefteychene2020-05-151-56/+32
|
* fixup! fixup! Release serde_dhall version 0.5.2fteychene2020-05-151-31/+55
|
* test: Add some unit tests for cachefteychene2020-05-151-12/+121
|
* fixup! Release serde_dhall version 0.5.2fteychene2020-05-152-54/+67
|
* feat: Add cache resolution on resolvefteychene2020-05-153-28/+182
|
* Move duplicate field checking to parserNadrieril2020-04-071-2/+2
|
* Move BinOp and Builtin definitions in the relevant moduleNadrieril2020-04-061-3/+4
|
* Extract operation-related code to a new moduleNadrieril2020-04-061-1/+2
|
* Split off operations from main expr enumNadrieril2020-04-061-10/+11
|
* Fix import bugNadrieril2020-04-051-9/+11
|
* Check code hashes in importNadrieril2020-04-052-9/+38
|
* Fix clippy warningsNadrieril2020-04-051-7/+4
|
* Reorganize API and internals of serde_dhall a bitNadrieril2020-03-311-1/+1
|
* Introduce option builderNadrieril2020-03-311-2/+8
|
* Brutally make all of dhall pubNadrieril2020-03-314-16/+16
|
* Nir::normalize isn't usefulNadrieril2020-03-311-6/+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.
* Remove top-level Expr aliasesNadrieril2020-03-312-11/+7
|
* Run clippyNadrieril2020-03-173-15/+15
|
* Implement conservative sanity checkingNadrieril2020-03-052-56/+76
|
* Cache imports correctlyNadrieril2020-03-052-19/+19
|
* Implement remote imports and cleanup import chainingNadrieril2020-03-051-76/+126
|
* Implement remote `as Location` resolutionNadrieril2020-03-051-1/+12
|
* Implement `as Text` importsNadrieril2020-03-051-1/+20
|
* 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
|
* Avoid re-typechecking after importNadrieril2020-02-193-14/+21
|
* Discard import headers while we don't use themNadrieril2020-02-182-11/+8
|
* Remove useless `normalize` option from ToExprOptionsNadrieril2020-02-181-8/+2
|