summaryrefslogtreecommitdiff
path: root/dhall/src/semantics/tck/typecheck.rs (follow)
Commit message (Expand)AuthorAgeFilesLines
* Resolve imports and alternatives outside of the ast traversalNadrieril2020-12-071-0/+8
* Defer name errors to typecheckingNadrieril2020-12-071-0/+5
* Unify `skip_resolve_expr` with normal resolutionNadrieril2020-12-071-2/+2
* Pass import results via the global contextNadrieril2020-12-071-1/+4
* Thread cx through normalizationNadrieril2020-12-071-27/+33
* Thread cx through typecheckNadrieril2020-12-071-7/+12
* Typecheck `with` using mutationNadrieril2020-11-031-2/+2
* spec: allow unions with mixed kindsNadrieril2020-06-251-15/+5
* ClippyNadrieril2020-04-071-3/+3
* Move duplicate field checking to parserNadrieril2020-04-071-39/+22
* Move BinOp and Builtin definitions in the relevant moduleNadrieril2020-04-061-4/+2
* Move builtins module up a levelNadrieril2020-04-061-3/+2
* Extract operation-related code to a new moduleNadrieril2020-04-061-511/+4
* oopsNadrieril2020-04-061-1/+1
* Factor out operations in typecheckNadrieril2020-04-061-415/+436
* Split off operations from main expr enumNadrieril2020-04-061-17/+18
* Move Value, SimpleValue and SimpleType to serdeNadrieril2020-03-311-4/+1
* Brutally make all of dhall pubNadrieril2020-03-311-5/+5
* Improve handling of builtin types in NirNadrieril2020-03-311-22/+6
* Rename LitKind to NumKindNadrieril2020-03-311-5/+5
* Add new Value type in APINadrieril2020-03-311-2/+2
* Remove never_type featureNadrieril2020-03-171-3/+1
* Run clippyNadrieril2020-03-171-1/+1
* Expose fewer pub thingsNadrieril2020-02-191-2/+5
* Avoid re-typechecking after importNadrieril2020-02-191-0/+1
* Borrow relevant Hir from TirNadrieril2020-02-181-6/+9
* Rename Value to NirNadrieril2020-02-171-47/+43
* Rename TyExpr to TirNadrieril2020-02-171-17/+16
* Avoid recomputing universes in tckNadrieril2020-02-161-28/+45
* Start requiring Universe to build a TypeNadrieril2020-02-161-156/+107
* Introduce proper Type structNadrieril2020-02-151-50/+61
* Desugar Completion during resolutionNadrieril2020-02-151-28/+6
* Factor some tck code to avoid needing get_type_tyexprNadrieril2020-02-151-42/+76
* OopsNadrieril2020-02-141-9/+9
* TyExpr always carries a typeNadrieril2020-02-131-57/+55
* Rework annotation and Sort handlingNadrieril2020-02-131-68/+75
* Simplify conversions to/from TyExprNadrieril2020-02-131-87/+70
* Only store type at root node in tyexprNadrieril2020-02-131-4/+8
* Introduce LitKind to factor out common enum nodesNadrieril2020-02-111-5/+11
* Remove the Embed variant from ExprKindNadrieril2020-02-111-5/+2
* Remove need for EmbedNadrieril2020-02-101-9/+1
* Automate conversion between envsNadrieril2020-02-091-20/+18
* Take Hir for typecheckNadrieril2020-02-091-32/+28
* Resolve variables alongside import resolutionNadrieril2020-02-091-1/+1
* Remove most TyExpr from normalizationNadrieril2020-02-091-10/+3
* Remove move type propagation through ValueNadrieril2020-02-091-30/+12
* Remove most reliance on types stored in ValueNadrieril2020-02-091-25/+31
* Massively deduplicate test harnessNadrieril2020-02-091-1/+4
* Typecheck record completionNadrieril2020-02-051-25/+51
* Typecheck projection by typeNadrieril2020-02-051-2/+25