summaryrefslogtreecommitdiff
path: root/dhall/src/phase (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Resolve imports by mutating Expr instead of cloning itNadrieril2019-09-031-19/+22
|
* No need to change the type of Embed when resolving anymoreNadrieril2019-09-031-2/+2
|
* Upgrade rust toolchainNadrieril2019-09-033-25/+18
|
* Implement parsing of `toMap` keywordNadrieril2019-08-313-0/+13
|
* Rework test harness to prepare for new types of testsNadrieril2019-08-301-2/+11
|
* Cleanup conversion of `Value` to `Expr`Nadrieril2019-08-301-9/+22
|
* Rename SubExpr to Expr, and Expr to RawExprNadrieril2019-08-284-48/+43
| | | | For clarity, and consistency with Value
* clippyNadrieril2019-08-272-4/+3
|
* Tweak tests to avoid double compilationNadrieril2019-08-261-2/+0
|
* Remove now unnecessary VoVF enumNadrieril2019-08-251-22/+24
|
* Rework apply_builtin to enforce preservation of type informationNadrieril2019-08-251-183/+156
|
* Enforce type information almost everywhereNadrieril2019-08-252-29/+17
|
* Check consistency of type informationNadrieril2019-08-251-2/+2
|
* Keep type information through normalizationNadrieril2019-08-252-79/+142
|
* Clarify which syntax elements are completely handled in the tck phaseNadrieril2019-08-232-25/+24
|
* Keep type information after RecursiveRecordTypeMergeNadrieril2019-08-232-89/+23
|
* Reduce API surface of dhall crateNadrieril2019-08-201-3/+3
|
* Move type construction fns from serde_dhall to dhallNadrieril2019-08-201-1/+34
|
* Use Ret in apply_builtinNadrieril2019-08-201-90/+101
|
* Propagate type information in Value::app()Nadrieril2019-08-202-27/+18
|
* Track evaluation status alongside ValueF in VoVFNadrieril2019-08-201-32/+40
|
* No need for Cow in return type of get_typeNadrieril2019-08-202-23/+21
|
* Introduce a new enum to store either a Value or a ValueFNadrieril2019-08-202-68/+90
|
* Naming tweaksNadrieril2019-08-202-32/+25
|
* Add Value::from_builtinNadrieril2019-08-201-25/+19
|
* Clarify conversion of Const/Builtin to ValueNadrieril2019-08-201-16/+27
|
* CleanupNadrieril2019-08-203-36/+59
|
* Standardize records of mixed kindsNadrieril2019-08-201-51/+17
|
* Reuse work to avoid complicated recursion in record mergingNadrieril2019-08-202-150/+25
|
* Tweak Ok/Err handling in typecheckNadrieril2019-08-201-157/+128
|
* Merge TypedValue and ValueNadrieril2019-08-193-166/+117
|
* Reduce untyped construction of ValuesNadrieril2019-08-192-43/+62
|
* Use TypedValue instead of Typed in normalize and typecheckNadrieril2019-08-193-262/+187
| | | | | 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-193-158/+149
|
* Rework ValueInternal and clarify invariants around ValueFNadrieril2019-08-181-8/+21
|
* s/Thunk/Value/Nadrieril2019-08-173-150/+152
|
* s/Value/ValueF/Nadrieril2019-08-163-184/+188
|
* Try to minimize untyped TypedThunksNadrieril2019-08-162-25/+36
|
* Remove dead codeNadrieril2019-08-163-34/+6
|
* Typecheck before normalizing in testsNadrieril2019-08-161-4/+1
|
* Avoid capture when typechecking union constructorNadrieril2019-08-161-2/+1
|
* Reduce api surface of dhall crateNadrieril2019-08-166-46/+41
| | | | Helps detect unused code
* Use `!` type instead of custom empty typeNadrieril2019-08-161-3/+3
|
* Disable some unused unstable featuresNadrieril2019-08-153-4/+3
|
* Remove special closures from ValueNadrieril2019-08-151-42/+55
| | | | Instead construct their values directly
* Implement inline headers parsingNadrieril2019-08-132-35/+23
|
* Implement Hash for ParsedSubExprNadrieril2019-08-132-23/+34
|
* Store Imports in their own node instead of in EmbedNadrieril2019-08-134-13/+25
|
* Considerably simplify Embed handlingNadrieril2019-08-132-3/+1
|
* Stop tracking the absence of Embed values at the type levelNadrieril2019-08-133-19/+17
|