summaryrefslogtreecommitdiff
path: root/dhall_syntax/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Extract pest_consume into its own crateNadrieril2019-09-181-35/+27
|
* Change invocation syntax of pest_consume::parser macroNadrieril2019-09-171-1/+1
|
* Remove need for slice_patterns in pest_consumeNadrieril2019-09-171-1/+0
|
* Various tweaksNadrieril2019-09-111-8/+6
|
* Rename match_inputs to match_nodes to reflect new terminologyNadrieril2019-09-111-38/+38
|
* No need to force user data to be a referenceNadrieril2019-09-101-11/+6
|
* Rename various bits of the pest_consume APINadrieril2019-09-101-3/+3
|
* Use proc_macro_hack to avoid the need for the proc_macro_hygiene featureNadrieril2019-09-101-1/+0
|
* Allows using match_inputs outside of a make_parser implNadrieril2019-09-101-18/+14
|
* Implement parsing in PestConsumerNadrieril2019-09-101-7/+7
|
* Add dummy `entrypoint` attributeNadrieril2019-09-101-0/+1
|
* Use match_inputs for parser entrypointNadrieril2019-09-101-7/+13
|
* Rename parse_children to match_inputsNadrieril2019-09-101-37/+37
|
* Generalize parse_children and change its invocationNadrieril2019-09-101-36/+36
|
* Move pest_consume into its own crateNadrieril2019-09-091-129/+3
|
* Make ParseInput independent from dhall-specific typesNadrieril2019-09-092-255/+261
|
* Store Spans at every node when parsingNadrieril2019-09-062-17/+51
|
* Implement rule shortcutting, and cleanup make_parser codeNadrieril2019-09-051-6/+17
|
* Implement rule aliasing and simplify parser codeNadrieril2019-09-051-246/+177
|
* Add mapping functions to InterpolatedTextContentsNadrieril2019-09-031-0/+46
|
* Resolve imports by mutating Expr instead of cloning itNadrieril2019-09-035-225/+399
|
* No need to change the type of Embed when resolving anymoreNadrieril2019-09-032-14/+22
|
* Upgrade rust toolchainNadrieril2019-09-031-1/+0
|
* Parse polymorphically in the Embed parameterNadrieril2019-09-022-71/+78
|
* We don't use the try_blocks feature anymoreNadrieril2019-09-021-1/+0
|
* Use proper hygiene for `Parsers` and `Rule`Nadrieril2019-09-022-2/+8
|
* Properly parse the argument of make_parser as an implNadrieril2019-09-021-1/+3
|
* Get rid of EntryPoint magicNadrieril2019-09-021-43/+48
|
* Avoid use of bind_by_move_pattern_guards featureNadrieril2019-09-021-1/+0
|
* Make make_parser into a proc_macro_attributeNadrieril2019-09-011-1/+2
| | | | That way rustfmt will format the contents of the parser.
* Change parser macros to use a function-like syntaxNadrieril2019-09-012-748/+928
| | | | This makes the parser code look much less magical.
* Rewrite the make_parser macro as a proc_macroNadrieril2019-09-011-203/+6
|
* Don't URL-decode path segmentsNadrieril2019-08-312-22/+27
|
* Implement parsing of `toMap` keywordNadrieril2019-08-314-1/+23
|
* Rename SubExpr to Expr, and Expr to RawExprNadrieril2019-08-284-72/+71
| | | | For clarity, and consistency with Value
* clippyNadrieril2019-08-273-5/+5
|
* s/token_rule/rule/Nadrieril2019-08-271-20/+20
|
* Rework parse macros to avoid the large ParsedValue enumNadrieril2019-08-271-146/+139
|
* Remove rule aliasingNadrieril2019-08-271-107/+93
|
* WordingNadrieril2019-08-261-13/+13
|
* Remove rule_group macroNadrieril2019-08-261-22/+4
|
* Match on rules in parser instead of on ParsedValuesNadrieril2019-08-262-25/+129
|
* Use `!` type instead of custom empty typeNadrieril2019-08-164-15/+6
|
* Include precedence parsing in parser macrosNadrieril2019-08-152-133/+188
|
* No need for manual stack handling in parser anymoreNadrieril2019-08-151-142/+96
|
* Use precedence climbing to parse expressions with operatorsNadrieril2019-08-151-119/+108
| | | | This speeds up parsing around 30%
* Implement inline headers parsingNadrieril2019-08-135-44/+80
|
* Implement Hash for ParsedSubExprNadrieril2019-08-132-6/+24
|
* The syntax has very little sharing; no need for Rc anymoreNadrieril2019-08-131-11/+5
|
* Store Imports in their own node instead of in EmbedNadrieril2019-08-134-20/+36
|