summaryrefslogtreecommitdiff
path: root/dhall/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Run clippyNadrieril2020-03-1716-126/+172
|
* Implement record punsNadrieril2020-03-114-1/+9
|
* Add support for `with` keywordNadrieril2020-03-103-1/+44
|
* Implement conservative sanity checkingNadrieril2020-03-053-56/+77
|
* Cache imports correctlyNadrieril2020-03-053-21/+21
|
* Implement remote imports and cleanup import chainingNadrieril2020-03-059-117/+185
|
* Implement remote `as Location` resolutionNadrieril2020-03-052-2/+13
|
* Implement `as Text` importsNadrieril2020-03-052-4/+22
|
* Refactor resolve a bitNadrieril2020-03-051-80/+76
|
* Implement `missing` and `env:VAR` importsNadrieril2020-03-053-8/+20
|
* Add a lot of import testsNadrieril2020-03-051-1/+1
|
* Run tests from repo root as specified in specNadrieril2020-03-051-1/+7
|
* Implement `as Location` importsNadrieril2020-03-053-59/+102
|
* Implement some normalization simplificationsNadrieril2020-03-052-77/+81
|
* Normalization for ProjectionByExprBasile Henry2020-03-022-4/+35
|
* Cut releaseNadrieril2020-02-211-1/+1
|
* Add support for dotted field syntaxNadrieril2020-02-202-2/+14
|
* Add support for duplicate record fieldsNadrieril2020-02-204-21/+46
|
* Expose fewer pub thingsNadrieril2020-02-195-48/+13
|
* Avoid re-typechecking after importNadrieril2020-02-197-15/+26
|
* Discard import headers while we don't use themNadrieril2020-02-183-13/+10
|
* Remove useless `normalize` option from ToExprOptionsNadrieril2020-02-183-26/+6
|
* Borrow relevant Hir from TirNadrieril2020-02-184-40/+50
|
* 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-1712-401/+377
|
* Rename TyExpr to TirNadrieril2020-02-175-31/+29
|
* Remove some unused codeNadrieril2020-02-171-24/+0
|
* 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-164-176/+213
|
* Introduce proper Type structNadrieril2020-02-155-57/+121
|
* 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
|
* TyExpr always carries a typeNadrieril2020-02-134-89/+68
|
* Rework annotation and Sort handlingNadrieril2020-02-132-69/+76
|
* Simplify conversions to/from TyExprNadrieril2020-02-134-108/+88
|
* Only store type at root node in tyexprNadrieril2020-02-132-29/+26
|
* Introduce LitKind to factor out common enum nodesNadrieril2020-02-1110-158/+179
|
* Simplify ExprKind visitorNadrieril2020-02-112-140/+84
|
* Remove the Embed variant from ExprKindNadrieril2020-02-1114-136/+79
|
* Remove need for EmbedNadrieril2020-02-104-20/+22
| | | | This was an archaic leftover from copying the Haskell datatypes anyway
* Remove types from NzEnvNadrieril2020-02-097-42/+47
|
* Automate conversion between envsNadrieril2020-02-093-22/+26
|
* Remove all types from ValueNadrieril2020-02-095-89/+16
|
* Take Hir for typecheckNadrieril2020-02-097-57/+58
|
* Resolve variables alongside import resolutionNadrieril2020-02-096-81/+153
|