summaryrefslogtreecommitdiff
path: root/dhall/src/semantics/nze (follow)
Commit message (Collapse)AuthorAgeFilesLines
* chore: fix clippy warningsNadrieril2021-01-221-4/+4
|
* 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 everywhere else imports are readNadrieril2020-12-071-2/+2
|
* Thread cx through normalizationNadrieril2020-12-073-133/+145
|
* Remove NirInternalNadrieril2020-11-032-50/+23
|
* Normalize `with` by mutation.Nadrieril2020-11-033-5/+42
| | | | | 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
* Move BinOp and Builtin definitions in the relevant moduleNadrieril2020-04-061-4/+3
|
* Move builtins module up a levelNadrieril2020-04-061-2/+3
|
* Extract operation-related code to a new moduleNadrieril2020-04-062-295/+9
|
* Only need to store OpKind in NirNadrieril2020-04-062-82/+77
|
* Fix normalization bugNadrieril2020-04-061-49/+49
|
* Avoid a few allocationsNadrieril2020-04-062-16/+20
|
* Factor our operations in normalizationNadrieril2020-04-062-300/+257
|
* Split off operations from main expr enumNadrieril2020-04-062-100/+128
|
* Brutally make all of dhall pubNadrieril2020-03-315-35/+35
|
* Nir::normalize isn't usefulNadrieril2020-03-311-76/+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-312-25/+32
|
* Move conversion to SimpleVal/Ty to simple moduleNadrieril2020-03-311-81/+0
|
* Remove top-level Expr aliasesNadrieril2020-03-311-5/+5
|
* Rename LitKind to NumKindNadrieril2020-03-312-40/+40
|
* Add SimpleType to mirror SimpleValueNadrieril2020-03-311-1/+47
|
* Add SimpleValue type to facilitate deserializationNadrieril2020-03-311-0/+34
|
* Remove never_type featureNadrieril2020-03-171-13/+14
|
* Run clippyNadrieril2020-03-173-28/+29
|
* 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
|
* Remove useless `normalize` option from ToExprOptionsNadrieril2020-02-181-3/+0
|
* 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-175-257/+239
|
* Avoid recomputing universes in tckNadrieril2020-02-161-3/+3
|
* Start requiring Universe to build a TypeNadrieril2020-02-161-1/+1
|
* Introduce proper Type structNadrieril2020-02-151-1/+4
|
* Desugar Completion during resolutionNadrieril2020-02-151-11/+9
|
* Factor some tck code to avoid needing get_type_tyexprNadrieril2020-02-152-3/+3
|
* Simplify conversions to/from TyExprNadrieril2020-02-131-17/+3
|
* Introduce LitKind to factor out common enum nodesNadrieril2020-02-112-57/+50
|
* Remove the Embed variant from ExprKindNadrieril2020-02-112-15/+7
|
* Remove need for EmbedNadrieril2020-02-101-0/+6
| | | | This was an archaic leftover from copying the Haskell datatypes anyway
* Remove types from NzEnvNadrieril2020-02-093-30/+32
|
* Remove all types from ValueNadrieril2020-02-092-74/+9
|
* Take Hir for typecheckNadrieril2020-02-091-2/+5
|
* Remove extra types stored in ValueNadrieril2020-02-092-25/+14
|
* Remove most TyExpr from normalizationNadrieril2020-02-092-76/+65
|
* Add Hir as untyped alternative to TyExprNadrieril2020-02-092-7/+7
|
* Remove move type propagation through ValueNadrieril2020-02-092-154/+54
|
* Remove most reliance on types stored in ValueNadrieril2020-02-093-38/+53
|