summaryrefslogtreecommitdiff
path: root/dhall/src/binary.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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