summaryrefslogtreecommitdiff
path: root/dhall/src/phase (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Move contents of dhall under a semantics submoduleNadrieril2019-12-156-2828/+0
|
* Reexport dhall_syntax as a module in dhallNadrieril2019-12-156-31/+31
|
* rustfmtNadrieril2019-11-112-3/+9
|
* typoNadrieril2019-11-111-2/+2
|
* Parse projection by expressionNadrieril2019-11-113-0/+12
|
* Propagate more spansNadrieril2019-11-111-3/+3
|
* Display first pretty type errorNadrieril2019-11-111-1/+1
|
* Store a `Span` in `Value`Nadrieril2019-11-111-4/+10
|
* Capture absence of span in Span itselfNadrieril2019-11-112-3/+13
|
* Generate import tests automaticallyNadrieril2019-11-111-47/+0
|
* Run `cargo fmt`Nadrieril2019-11-113-53/+65
|
* Merge remote-tracking branch 'origin/master' into fintan/canonicalizeFintan Halpenny2019-09-062-21/+24
|\
| * 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
| |
* | Merge remote-tracking branch 'origin/fintan/canonicalize' into ↵Fintan Halpenny2019-09-064-26/+18
|\ \ | | | | | | | | | fintan/canonicalize
| * | Merge remote-tracking branch 'origin/master' into fintan/canonicalizeNadrieril2019-09-034-26/+18
| |\|
| | * Upgrade rust toolchainNadrieril2019-09-033-25/+18
| | |
* | | Move Canonicalize into resolve.Fintan Halpenny2019-09-032-5/+75
| | | | | | | | | | | | Rename File to FilePath and have more consistent naming.
* | | swp file accidentally checked inFintan Halpenny2019-09-031-0/+0
|/ /
* | Merge remote-tracking branch 'origin/master' into fintan/canonicalizeFintan Halpenny2019-09-027-1244/+984
|\|
| * 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