summaryrefslogtreecommitdiff
path: root/dhall/src/semantics/nze/normalize.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Resolve imports and alternatives outside of the ast traversalNadrieril2020-12-071-0/+8
|
* Defer name errors to typecheckingNadrieril2020-12-071-0/+1
| | | | We aren't supposed to inspect anything before alternatives are chosen
* Pass import results via the global contextNadrieril2020-12-071-1/+4
|
* Thread cx through normalizationNadrieril2020-12-071-19/+20
|
* Normalize `with` by mutation.Nadrieril2020-11-031-1/+1
| | | | | This is Cow-style mutation: we clone only what's shared and then mutate it. This it more legible and more efficient than the immutable version.
* Try to keep ownership of `Nir`s when convenientNadrieril2020-11-031-1/+1
| | | | | The goal is that we might avoid cloning internals in the common case where a value is not shared
* Extract operation-related code to a new moduleNadrieril2020-04-061-294/+7
|
* Only need to store OpKind in NirNadrieril2020-04-061-73/+65
|
* Fix normalization bugNadrieril2020-04-061-49/+49
|
* Avoid a few allocationsNadrieril2020-04-061-13/+15
|
* Factor our operations in normalizationNadrieril2020-04-061-298/+255
|
* Split off operations from main expr enumNadrieril2020-04-061-78/+104
|
* Brutally make all of dhall pubNadrieril2020-03-311-5/+5
|
* Improve handling of builtin types in NirNadrieril2020-03-311-17/+5
|
* Rename LitKind to NumKindNadrieril2020-03-311-35/+35
|
* Remove never_type featureNadrieril2020-03-171-13/+14
|
* Run clippyNadrieril2020-03-171-21/+22
|
* Implement some normalization simplificationsNadrieril2020-03-051-76/+80
|
* Normalization for ProjectionByExprBasile Henry2020-03-021-3/+34
|
* Avoid re-typechecking after importNadrieril2020-02-191-0/+1
|
* Rename Value to NirNadrieril2020-02-171-128/+115
|
* Start requiring Universe to build a TypeNadrieril2020-02-161-1/+1
|
* Desugar Completion during resolutionNadrieril2020-02-151-11/+9
|
* Factor some tck code to avoid needing get_type_tyexprNadrieril2020-02-151-1/+1
|
* Introduce LitKind to factor out common enum nodesNadrieril2020-02-111-41/+45
|
* Remove the Embed variant from ExprKindNadrieril2020-02-111-4/+2
|
* Remove types from NzEnvNadrieril2020-02-091-1/+1
|
* Remove extra types stored in ValueNadrieril2020-02-091-16/+8
|
* Remove most TyExpr from normalizationNadrieril2020-02-091-11/+10
|
* Add Hir as untyped alternative to TyExprNadrieril2020-02-091-2/+2
|
* Remove move type propagation through ValueNadrieril2020-02-091-91/+33
|
* Remove most reliance on types stored in ValueNadrieril2020-02-091-4/+4
|
* Implement some record simplificationsNadrieril2020-02-061-2/+92
|
* Normalize toMapNadrieril2020-02-051-5/+44
|
* Get rid of all the manual Ref borrowsNadrieril2020-01-301-115/+55
|
* Avoid unnecessary allocations of `Value`sNadrieril2020-01-301-12/+9
|
* Clarify normalization to ensure we only nze onceNadrieril2020-01-301-18/+7
|
* Move Thunk value into ValueInternalNadrieril2020-01-301-1/+0
|
* Factor out text literals in ValueNadrieril2020-01-301-30/+22
| | | | This allows encapsulating invariants properly and reducing clutter
* Remove type parameter from ValueKindNadrieril2020-01-301-7/+4
|
* Move main API to lib.rsNadrieril2020-01-301-1/+1
|
* Move normalize under nzeNadrieril2020-01-301-0/+507