summaryrefslogtreecommitdiff
path: root/dhall_syntax (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Use `!` type instead of custom empty typeNadrieril2019-08-164-15/+6
|
* Include precedence parsing in parser macrosNadrieril2019-08-152-133/+188
|
* No need for manual stack handling in parser anymoreNadrieril2019-08-151-142/+96
|
* Use precedence climbing to parse expressions with operatorsNadrieril2019-08-151-119/+108
| | | | This speeds up parsing around 30%
* Implement inline headers parsingNadrieril2019-08-135-44/+80
|
* Implement Hash for ParsedSubExprNadrieril2019-08-132-6/+24
|
* The syntax has very little sharing; no need for Rc anymoreNadrieril2019-08-131-11/+5
|
* Store Imports in their own node instead of in EmbedNadrieril2019-08-134-20/+36
|
* Cleanup visitor codeNadrieril2019-08-131-139/+54
|
* Considerably simplify Embed handlingNadrieril2019-08-133-128/+44
|
* Stop tracking the absence of Embed values at the type levelNadrieril2019-08-134-35/+4
|
* No need to track the absence of `Span`s at the type levelNadrieril2019-08-134-138/+84
|
* Add support for dependent typesNadrieril2019-08-084-1/+22
|
* Add truncated Natural subtractionNadrieril2019-08-073-0/+3
|
* Remove union literals from the languageNadrieril2019-08-074-63/+3
|
* Forbid surrogate pairs and non-charactersNadrieril2019-08-071-2/+21
|
* Sort labels in projection expressionsNadrieril2019-08-073-5/+100
|
* Generalize empty list annotationsNadrieril2019-08-062-5/+7
|
* Prepare for https://github.com/dhall-lang/dhall-lang/pull/630Nadrieril2019-08-062-3/+3
|
* Add toMap keywordNadrieril2019-08-061-0/+1
|
* RFC3986 URLsNadrieril2019-08-063-0/+9
|
* Braced escape sequencesNadrieril2019-08-061-4/+24
|
* Add some new tests and implement import alternativesNadrieril2019-08-062-0/+64
|
* Remove old-style optional literalsNadrieril2019-08-064-31/+3
|
* Inline headersNadrieril2019-08-061-0/+1
|
* Update dhall-lang submoduleNadrieril2019-08-031-0/+1
|
* Update dhall-lang submoduleNadrieril2019-08-034-9/+19
|
* TweakNadrieril2019-05-121-12/+12
|
* clippyNadrieril2019-05-123-5/+4
|
* Implement binary encodingNadrieril2019-05-125-50/+106
| | | | Closes #39
* oopsNadrieril2019-05-101-0/+1
|
* Write a custom map type that allows duplicatesNadrieril2019-05-106-39/+217
|
* Small utility SubExpr::from_builtinNadrieril2019-05-091-0/+4
|
* ExprF need not be generic in LabelNadrieril2019-05-093-194/+94
|
* Make shift fallible and improve shift ergonomicsNadrieril2019-05-091-9/+13
|
* Detect duplicate record fields in typecheckNadrieril2019-05-093-31/+37
|
* Update dhall-lang submoduleNadrieril2019-05-092-27/+68
|
* Rename the record combining operators internallyNadrieril2019-05-083-11/+11
|
* Implement normalization of missing builtinsNadrieril2019-05-081-1/+12
|
* Don't discard normalization work done by typecheckingNadrieril2019-05-071-1/+1
|
* Reorganize dhall_syntaxNadrieril2019-05-078-8/+12
|
* Clean up some of the SubExpr type-changing methodsNadrieril2019-05-072-108/+16
|
* We actually don't need SubExpr::shift anymoreNadrieril2019-05-041-81/+0
|
* Revert "Make SubExpr generic in the variable labels type"Nadrieril2019-05-044-218/+187
| | | | This reverts commit 4c159640e5ee77ffa48b85a5bffa56350cf933ef.
* Revert "Recover arrow type detection"Nadrieril2019-05-042-47/+19
| | | | This reverts commit 153cf8dab3b80aba30ac3adfd44e4be251494ea2.
* Recover arrow type detectionNadrieril2019-05-042-19/+47
|
* Make SubExpr generic in the variable labels typeNadrieril2019-05-044-187/+218
|
* Thread Spans through the ASTNadrieril2019-05-043-127/+139
|
* Move `Note`s into the spine of the ASTNadrieril2019-05-044-235/+80
|
* Remove dummy lifetimesNadrieril2019-05-041-58/+55
|