summaryrefslogtreecommitdiff
path: root/dhall/src/semantics/nze (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* Implement some record simplificationsNadrieril2020-02-061-2/+92
|
* Normalize toMapNadrieril2020-02-052-5/+50
|
* Use Spans consistently by valueNadrieril2020-02-021-3/+3
|
* More errorsNadrieril2020-02-021-0/+3
|
* More nice errors plus some refactorNadrieril2020-02-021-3/+0
|
* Implement once nice error using annotate_snippetsNadrieril2020-02-011-0/+4
|
* Factor out custom Lazy structNadrieril2020-01-313-35/+83
|
* Use Rc equality to shortcut Value equalityNadrieril2020-01-301-2/+1
|
* Tweak ConstantClosureNadrieril2020-01-301-13/+7
|
* Eval Thunk by moveNadrieril2020-01-301-4/+3
|
* Get rid of all the manual Ref borrowsNadrieril2020-01-301-115/+55
|
* Use OnceCell to enable returning &ValKindNadrieril2020-01-301-68/+53
|
* Replace Form with a pair of RefCells, in preparation for OnceCellNadrieril2020-01-301-88/+71
|
* Move Form::PartialExpr into ThunkNadrieril2020-01-301-36/+46
|
* Only the Form must be in a RefCellNadrieril2020-01-301-61/+67
|
* Avoid unnecessary allocations of `Value`sNadrieril2020-01-303-22/+21
|
* Clarify normalization to ensure we only nze onceNadrieril2020-01-303-54/+52
|
* Move Thunk value into ValueInternalNadrieril2020-01-302-35/+32
|
* Prepare ValueInternal with new `Form`sNadrieril2020-01-301-53/+50
|
* Factor out text literals in ValueNadrieril2020-01-302-39/+87
| | | | This allows encapsulating invariants properly and reducing clutter
* Remove type parameter from ValueKindNadrieril2020-01-302-22/+16
|
* Remove Value visitorNadrieril2020-01-303-309/+87
| | | | | | It's mostly useful when we can change types, but it's also too constraining if we can, because then we can't enforce complex invariants like the one for TextLit.
* Move main API to lib.rsNadrieril2020-01-302-2/+2
|
* Move normalize under nzeNadrieril2020-01-303-3/+510
|
* Move Value-related stuff under semantics::nzeNadrieril2020-01-304-0/+906
|
* Encapsulate partially applied builtin in a separate structNadrieril2020-01-301-8/+0
|