summaryrefslogtreecommitdiff
path: root/dhall_core/src/parser.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Revert end_of_line handling to upstreamNadrieril2019-04-041-3/+1
|
* Import union rules from upstream grammarNadrieril2019-04-041-9/+21
|
* Handle Some as in upstream grammarNadrieril2019-04-041-21/+22
|
* Factor literal-expression back inNadrieril2019-04-041-1/+1
|
* Tweak double literalsNadrieril2019-04-041-6/+8
|
* Factor back in some rule branchesNadrieril2019-04-041-45/+48
|
* Tweak matching on Some/NoneNadrieril2019-04-041-21/+9
|
* Roll rc through parser to enable matchingNadrieril2019-04-041-93/+95
|
* renameNadrieril2019-04-041-5/+5
|
* Integrate the special patterns from match_children!() into iter_patternsNadrieril2019-03-271-130/+38
| | | | Considerably simplifies parser macros
* Rename match_pair!() to match_children!()Nadrieril2019-03-271-8/+8
|
* Manually rustfmt like a naziNadrieril2019-03-271-90/+213
|
* Parse multiline strings correctlyNadrieril2019-03-241-19/+49
| | | | Closes #24
* Parser import hash and headersNadrieril2019-03-241-12/+19
|
* Disallow builtins as bound variablesNadrieril2019-03-241-4/+12
|
* Refactor printerNadrieril2019-03-241-2/+2
| | | | | Avoids stupid stack overflows when adding variants, gets precedences right, and updates to latest grammar changes
* Handle merge and record projectionNadrieril2019-03-231-4/+17
|
* Remove various -raw suffixesNadrieril2019-03-231-47/+47
|
* Inline various rules in grammarNadrieril2019-03-231-2/+2
|
* Improve error ergonomics in parserNadrieril2019-03-231-60/+55
|
* Handle double overflows in parserNadrieril2019-03-231-4/+9
|
* Parse unicode escapes in stringNadrieril2019-03-231-20/+24
|
* Handle quoted labelsNadrieril2019-03-221-1/+6
|
* 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
| | | | Closes #30
* 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
| | | | Closes #29
* Use Box more uniformly in ASTNadrieril2019-03-161-23/+15
| | | | Closes #28
* Store an Option in OptionalLit instead of a vecNadrieril2019-03-161-2/+2
| | | | Closes #21
* Store a vec in AppNadrieril2019-03-151-1/+6
| | | | Closes #26
* Revert "Start rewriting parser with slice patterns"Nadrieril2019-03-151-122/+30
| | | | This reverts commit 9d033adb111dd5b5008a9430c8425d3152dabee5.