summaryrefslogtreecommitdiff
path: root/dhall_core/src/parser.rs (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* Parse a lot more of the import typesNadrieril2019-03-221-20/+60
* Improve import handling in parserNadrieril2019-03-211-5/+16
* Follow the spec for handling DoublesNadrieril2019-03-211-4/+5
* Represent Optional literals more faithfullyNadrieril2019-03-211-16/+28
* Rename Record/Union to RecordType/UnionTypeNadrieril2019-03-211-4/+4
* Reorganize dhall_core a bitNadrieril2019-03-211-444/+479
* Parser macro tweaksNadrieril2019-03-201-6/+6
* Cleanup parserNadrieril2019-03-201-91/+64
* Reimplement shortcuttingNadrieril2019-03-201-5/+13
* Make parser implementation non-recursiveNadrieril2019-03-201-103/+128
* Allow patterns in parser macrosNadrieril2019-03-201-31/+21
* Change syntax of parser macrosNadrieril2019-03-201-148/+148
* Remove binop special case in parser; cleanupNadrieril2019-03-201-50/+66
* Cleanup parser codeNadrieril2019-03-201-124/+49
* Restore parser performanceNadrieril2019-03-201-310/+82
* Obsolete old parser macros; performance is now deadNadrieril2019-03-201-188/+265
* Handle simple parsing cases with new macrosNadrieril2019-03-201-110/+124
* Wrap all parsing rules into a common variantNadrieril2019-03-191-83/+153
* Extract the core of parser macros into a separate crateNadrieril2019-03-191-131/+45
* Test printer in parser testsNadrieril2019-03-191-1/+21
* Split List literal between empty and non-emptyNadrieril2019-03-181-2/+2
* Clean up some mess relating to Clone boundsNadrieril2019-03-171-7/+7
* Use Rc instead of Box in AST to allow structural sharingNadrieril2019-03-161-33/+34
* Use Box more uniformly in ASTNadrieril2019-03-161-23/+15
* Store an Option in OptionalLit instead of a vecNadrieril2019-03-161-2/+2
* Store a vec in AppNadrieril2019-03-151-1/+6
* Revert "Start rewriting parser with slice patterns"Nadrieril2019-03-151-122/+30
* Start rewriting parser with slice patternsNadrieril2019-03-151-30/+122
* Handle and parse interpolated stringsNadrieril2019-03-141-16/+27
* rustfmtNadrieril2019-03-121-16/+15
* Greatly reduce parser stack usageNadrieril2019-03-121-74/+79
* Add some explanatory commentsNadrieril2019-03-111-0/+5
* Obey clippy lintsNadrieril2019-03-091-10/+9
* Remove the pervasive Label type parameterNadrieril2019-03-091-1/+1
* Use new Label type instead of &str in parserNadrieril2019-03-091-50/+54
* A whole new bunch of tests now pass !Nadrieril2019-03-091-65/+65
* First import works !Nadrieril2019-03-091-1/+3
* Rename Expr back to its true nameNadrieril2019-03-081-38/+38
* Make Expr generic in its type of labelsNadrieril2019-03-081-39/+39
* Revert "Start moving strs in the AST"Nadrieril2019-03-071-49/+47
* Start moving strs in the ASTNadrieril2019-03-071-47/+49
* Finally get rid of old parserNadrieril2019-03-061-32/+21
* Start parsing importsNadrieril2019-03-061-1/+64
* Reorder rule in parser to match grammarNadrieril2019-03-061-108/+110
* Split-off core into its own crateNadrieril2019-03-061-0/+827