summaryrefslogtreecommitdiff
path: root/dhall/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Resolve by ref instead of by mutNadrieril2020-02-093-274/+81
|
* Introduce environment for import resolutionNadrieril2020-02-091-31/+56
|
* Remove extra types stored in ValueNadrieril2020-02-093-47/+20
|
* Remove most TyExpr from normalizationNadrieril2020-02-097-108/+80
|
* Add Hir as untyped alternative to TyExprNadrieril2020-02-095-65/+133
|
* Remove move type propagation through ValueNadrieril2020-02-095-237/+86
|
* Remove most reliance on types stored in ValueNadrieril2020-02-095-67/+88
|
* Upgrade Rust toolchainNadrieril2020-02-091-2/+0
|
* Track error output of parsing and binary decoding testsNadrieril2020-02-091-5/+7
|
* Remove distinction between failure and error testsNadrieril2020-02-091-12/+4
|
* Add option to overwrite test filesNadrieril2020-02-091-48/+105
|
* Move ui outputs to a sensible placeNadrieril2020-02-091-8/+3
|
* Massively deduplicate test harnessNadrieril2020-02-093-140/+155
|
* Track output of import errorsNadrieril2020-02-091-0/+26
|
* Implement some record simplificationsNadrieril2020-02-061-2/+92
|
* Normalize toMapNadrieril2020-02-053-15/+55
|
* Typecheck record completionNadrieril2020-02-051-25/+51
|
* Typecheck projection by typeNadrieril2020-02-051-2/+25
|
* Implement typechecking of toMapNadrieril2020-02-041-1/+79
|
* Workaround panic in a serde_dhall exampleNadrieril2020-02-041-2/+4
| | | | | Unsure what's causing it, most probably mixing of spans from different inputs
* Add basic pretty type errors to all errorsNadrieril2020-02-042-99/+68
|
* Add local test files on top of dhall-lang testsNadrieril2020-02-022-0/+4
|
* Tweak errorsNadrieril2020-02-022-50/+46
|
* Use Spans consistently by valueNadrieril2020-02-025-23/+19
|
* Fix spans for unions and recordsNadrieril2020-02-022-17/+24
|
* Let rustfmt format string literalsNadrieril2020-02-021-43/+44
|
* More errorsNadrieril2020-02-023-22/+105
|
* More nice errors plus some refactorNadrieril2020-02-025-161/+230
|
* Implement once nice error using annotate_snippetsNadrieril2020-02-015-22/+169
|
* Factor out custom Lazy structNadrieril2020-01-313-35/+83
|
* Use Rc equality to shortcut Value equalityNadrieril2020-01-301-2/+1
|
* Tweak ConstantClosureNadrieril2020-01-302-25/+21
|
* Eval Thunk by moveNadrieril2020-01-301-4/+3
|
* Get rid of all the manual Ref borrowsNadrieril2020-01-302-149/+75
|
* Use OnceCell to enable returning &ValKindNadrieril2020-01-302-71/+56
|
* 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-305-25/+25
|
* Clarify normalization to ensure we only nze onceNadrieril2020-01-304-58/+55
|
* 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-303-83/+110
| | | | This allows encapsulating invariants properly and reducing clutter
* Remove type parameter from ValueKindNadrieril2020-01-304-35/+21
|
* 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 parse and resolve up a levelNadrieril2020-01-306-8/+7
|
* Move parser files to syntax/Nadrieril2020-01-303-1/+1
|
* Move main API to lib.rsNadrieril2020-01-3013-254/+256
|
* Move normalize under nzeNadrieril2020-01-306-6/+5
|
* Move Value-related stuff under semantics::nzeNadrieril2020-01-308-12/+8
|