summaryrefslogtreecommitdiff
path: root/dhall/src/core/value.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Rework apply_builtin to enforce preservation of type informationNadrieril2019-08-251-17/+15
|
* Enforce type information almost everywhereNadrieril2019-08-251-30/+36
|
* Check consistency of type informationNadrieril2019-08-251-25/+28
|
* Keep type information through normalizationNadrieril2019-08-251-11/+28
|
* Don't use take_mut::take lightly since normalize_whnf might panicNadrieril2019-08-211-9/+18
|
* Reduce API surface of dhall crateNadrieril2019-08-201-8/+5
|
* Propagate type information in Value::app()Nadrieril2019-08-201-8/+15
|
* Track evaluation status alongside ValueF in VoVFNadrieril2019-08-201-26/+18
|
* No need for Cow in return type of get_typeNadrieril2019-08-201-3/+2
|
* Introduce a new enum to store either a Value or a ValueFNadrieril2019-08-201-3/+51
|
* Naming tweaksNadrieril2019-08-201-3/+3
|
* Add Value::from_builtinNadrieril2019-08-201-2/+5
|
* Clarify conversion of Const/Builtin to ValueNadrieril2019-08-201-5/+2
|
* CleanupNadrieril2019-08-201-13/+3
|
* Tweak Value APINadrieril2019-08-191-28/+19
|
* Merge TypedValue and ValueNadrieril2019-08-191-129/+63
|
* Reduce untyped construction of ValuesNadrieril2019-08-191-40/+28
|
* Use TypedValue instead of Typed in normalize and typecheckNadrieril2019-08-191-28/+20
| | | | | Now Typed is only used in dhall::phase, similarly to Parsed/Resolved/Normalized
* s/to_valuef/to_whnf/ and avoid cloning ValueFs when possibleNadrieril2019-08-191-20/+18
|
* Merge ValueInternal and TypedValueInternalNadrieril2019-08-181-111/+79
|
* Rework ValueInternal and clarify invariants around ValueFNadrieril2019-08-181-49/+54
|
* s/Thunk/Value/Nadrieril2019-08-171-361/+362
|
* Use generic Shift/Subst implsNadrieril2019-08-161-128/+40
|
* s/Value/ValueF/Nadrieril2019-08-161-106/+106
|
* Remove dead codeNadrieril2019-08-161-1/+4
|
* Reduce api surface of dhall crateNadrieril2019-08-161-13/+6
| | | | Helps detect unused code
* rustfmtNadrieril2019-08-151-2/+1
|
* Fix variable substitutionNadrieril2019-08-151-4/+2
| | | | I have no idea how this didn't get caught before
* Remove special closures from ValueNadrieril2019-08-151-94/+1
| | | | Instead construct their values directly
* Fix typo in normalizationNadrieril2019-08-141-1/+1
|
* Considerably simplify Embed handlingNadrieril2019-08-131-5/+3
|
* Stop tracking the absence of Embed values at the type levelNadrieril2019-08-131-5/+5
|
* s/TypeThunk/TypedThunk/gNadrieril2019-08-131-12/+12
|
* Remove dhall::expr!() macroNadrieril2019-08-101-5/+45
| | | | It's a lot of hassle for not a lot of benefit
* Add support for dependent typesNadrieril2019-08-081-1/+18
|
* Remove union literals from the languageNadrieril2019-08-071-12/+3
|
* Prepare for https://github.com/dhall-lang/dhall-lang/pull/630Nadrieril2019-08-061-3/+5
|
* clippyNadrieril2019-05-121-1/+1
|
* Make visibilities more consistentNadrieril2019-05-091-13/+10
|
* ExprF need not be generic in LabelNadrieril2019-05-091-3/+1
|
* Make shift fallible and improve shift ergonomicsNadrieril2019-05-091-53/+68
|
* Detect duplicate record fields in typecheckNadrieril2019-05-091-6/+6
|
* Implement normalization of missing builtinsNadrieril2019-05-081-2/+7
|
* Promote shift and subst_shift to traitsNadrieril2019-05-071-3/+7
|
* Move AlphaVar and AlphaLabel into a new moduleNadrieril2019-05-071-103/+2
|
* Small mistakeNadrieril2019-05-071-1/+1
|
* Document Value and ThunkNadrieril2019-05-071-5/+16
|
* Move main datatypes into their own modulesNadrieril2019-05-061-0/+616