summaryrefslogtreecommitdiff
path: root/dhall_core/src/core.rs (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* | Make Expr generic in LabelNadrieril2019-03-311-11/+13
* | Generalize type of mapNadrieril2019-03-311-5/+7
* | Remove evil Deref implNadrieril2019-03-311-11/+6
* | Move recursion out of ExprNadrieril2019-03-311-44/+32
* | Make SubExpr a newtypeNadrieril2019-03-311-12/+33
|/
* Refactor printerNadrieril2019-03-241-15/+17
* Handle merge and record projectionNadrieril2019-03-231-5/+10
* Improve import handling in parserNadrieril2019-03-211-3/+3
* Follow the spec for handling DoublesNadrieril2019-03-211-2/+26
* Represent Optional literals more faithfullyNadrieril2019-03-211-4/+6
* Rename Record/Union to RecordType/UnionTypeNadrieril2019-03-211-4/+4
* Reorganize dhall_core a bitNadrieril2019-03-211-633/+49
* Handle simple parsing cases with new macrosNadrieril2019-03-201-0/+1
* Test printer in parser testsNadrieril2019-03-191-20/+47
* Split List literal between empty and non-emptyNadrieril2019-03-181-13/+12
* Considerably simplify subst, shift and typecheckingNadrieril2019-03-181-250/+100
* Clean up some mess relating to Clone boundsNadrieril2019-03-171-61/+23
* Use Rc consistently everywhereNadrieril2019-03-171-145/+139
* Use Rc instead of Box in AST to allow structural sharingNadrieril2019-03-161-39/+41
* Use Box more uniformly in ASTNadrieril2019-03-161-35/+43
* Store an Option in OptionalLit instead of a vecNadrieril2019-03-161-9/+9
* Store a vec in AppNadrieril2019-03-151-11/+21
* rustfmtNadrieril2019-03-141-5/+16
* Handle and parse interpolated stringsNadrieril2019-03-141-13/+127
* Implement binary decodingNadrieril2019-03-141-3/+3
* Handle Some and None builtinsNadrieril2019-03-121-6/+18
* Fix stack overflows in prelude testsNadrieril2019-03-111-37/+20
* Normalize lazilyNadrieril2019-03-111-0/+1
* Use Rc<str> for LabelNadrieril2019-03-101-6/+8
* Obey clippy lintsNadrieril2019-03-091-1/+1
* Remove the pervasive Label type parameterNadrieril2019-03-091-106/+64
* Use new Label type everywhereNadrieril2019-03-091-82/+37
* Use new Label type instead of &str in parserNadrieril2019-03-091-6/+51
* rustfmtNadrieril2019-03-091-22/+31
* First import works !Nadrieril2019-03-091-0/+10
* Clean up some of the messNadrieril2019-03-081-2/+13
* Rename Expr back to its true nameNadrieril2019-03-081-88/+87
* Finally get rid of all the &'i strNadrieril2019-03-081-10/+10
* Make labels non-CopyNadrieril2019-03-081-96/+91
* Slowly propagate the new type parameter throughout the codebaseNadrieril2019-03-081-85/+184
* Make Expr generic in its type of labelsNadrieril2019-03-081-53/+54
* Revert "Start moving strs in the AST"Nadrieril2019-03-071-119/+117
* Start moving strs in the ASTNadrieril2019-03-071-117/+119
* rustfmtNadrieril2019-03-061-5/+3
* Start parsing importsNadrieril2019-03-061-15/+68
* rustfmtNadrieril2019-03-061-2/+10
* Considerably remove clutter in normalizeNadrieril2019-03-061-3/+68
* Remove FailedParse variantNadrieril2019-03-061-4/+0
* Split-off normalization into its own crateNadrieril2019-03-061-286/+4
* Split-off core into its own crateNadrieril2019-03-061-0/+1205