summaryrefslogtreecommitdiff
path: root/dhall/src/binary.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Rename dhall_core to dhall_syntaxNadrieril2019-05-041-2/+2
|
* Update dhall-lang submoduleNadrieril2019-05-021-1/+1
|
* An empty optional value is purely semanticNadrieril2019-04-201-1/+1
|
* Make App() only store one argumentNadrieril2019-04-191-6/+6
|
* Prepare for nullary union variantsNadrieril2019-04-161-2/+20
|
* Handle empty optionals correctlyNadrieril2019-04-151-2/+2
| | | | Closes #78
* Fix `let` parsingNadrieril2019-04-131-0/+1
|
* clippyNadrieril2019-04-081-15/+15
|
* FixNadrieril2019-04-071-0/+1
|
* Move recursion out of ExprNadrieril2019-03-311-2/+2
|
* Make SubExpr a newtypeNadrieril2019-03-311-2/+1
|
* Improve decoder errors on unknown inputsNadrieril2019-03-241-6/+2
|
* Parser import hash and headersNadrieril2019-03-241-5/+30
|
* Parse a lot more of the import typesNadrieril2019-03-221-10/+83
|
* Improve binary decoding errorsNadrieril2019-03-221-14/+25
|
* Improve import handling in parserNadrieril2019-03-211-0/+15
|
* Follow the spec for handling DoublesNadrieril2019-03-211-1/+1
|
* Represent Optional literals more faithfullyNadrieril2019-03-211-3/+3
|
* Rename Record/Union to RecordType/UnionTypeNadrieril2019-03-211-2/+2
|
* Split List literal between empty and non-emptyNadrieril2019-03-181-2/+2
|
* Use Rc consistently everywhereNadrieril2019-03-171-5/+4
|
* Use Rc instead of Box in AST to allow structural sharingNadrieril2019-03-161-1/+2
| | | | Closes #29
* Use Box more uniformly in ASTNadrieril2019-03-161-72/+73
| | | | Closes #28
* Store an Option in OptionalLit instead of a vecNadrieril2019-03-161-5/+5
| | | | Closes #21
* Store a vec in AppNadrieril2019-03-151-10/+8
| | | | Closes #26
* Handle and parse interpolated stringsNadrieril2019-03-141-3/+15
| | | | Closes #25
* Implement binary decodingNadrieril2019-03-141-0/+213
Closes #2 Closes #23