summaryrefslogtreecommitdiff
path: root/dhall_syntax/src/parser.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Move contents of dhall_syntax to dhallNadrieril2019-12-151-942/+0
|
* Merge dhall_generated_parser into dhall_syntaxNadrieril2019-12-131-1/+1
|
* Derive Parser in dhall_syntax directlyNadrieril2019-12-131-3/+3
|
* Parse projection by expressionNadrieril2019-11-111-12/+15
|
* Capture absence of span in Span itselfNadrieril2019-11-111-9/+5
|
* Run `cargo fmt`Nadrieril2019-11-111-7/+5
|
* Merge branch 'master' into fintan/canonicalizeNadrieril Feneanar2019-09-201-323/+219
|\
| * Extract pest_consume into its own crateNadrieril2019-09-181-35/+27
| |
| * Change invocation syntax of pest_consume::parser macroNadrieril2019-09-171-1/+1
| |
| * 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
| |
| * 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-091-249/+259
| |
| * Store Spans at every node when parsingNadrieril2019-09-061-13/+37
| |
* | Merge remote-tracking branch 'origin/master' into fintan/canonicalizeFintan Halpenny2019-09-061-248/+198
|\|
| * Implement rule shortcutting, and cleanup make_parser codeNadrieril2019-09-051-6/+17
| |
| * Implement rule aliasing and simplify parser codeNadrieril2019-09-051-246/+177
| |
* | Merge remote-tracking branch 'origin/fintan/canonicalize' into ↵Fintan Halpenny2019-09-061-942/+939
|\ \ | | | | | | | | | fintan/canonicalize
| * | Merge remote-tracking branch 'origin/master' into fintan/canonicalizeNadrieril2019-09-031-942/+939
| |\|
| | * Parse polymorphically in the Embed parameterNadrieril2019-09-021-64/+76
| | |
| | * Use proper hygiene for `Parsers` and `Rule`Nadrieril2019-09-021-2/+7
| | |
| | * Properly parse the argument of make_parser as an implNadrieril2019-09-021-1/+3
| | |
| | * Get rid of EntryPoint magicNadrieril2019-09-021-43/+48
| | |
| | * 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-011-748/+927
| | | | | | | | | | | | This makes the parser code look much less magical.
| | * Rewrite the make_parser macro as a proc_macroNadrieril2019-09-011-203/+6
| | |
* | | Move Canonicalize into resolve.Fintan Halpenny2019-09-031-3/+3
|/ / | | | | | | Rename File to FilePath and have more consistent naming.
* | Merge remote-tracking branch 'origin/master' into fintan/canonicalizeFintan Halpenny2019-09-021-385/+436
|\|
| * Don't URL-decode path segmentsNadrieril2019-08-311-5/+22
| |
| * Implement parsing of `toMap` keywordNadrieril2019-08-311-1/+7
| |
| * Rename SubExpr to Expr, and Expr to RawExprNadrieril2019-08-281-32/+32
| | | | | | | | For clarity, and consistency with Value
| * clippyNadrieril2019-08-271-3/+3
| |
| * 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-261-25/+128
| |
| * Use `!` type instead of custom empty typeNadrieril2019-08-161-2/+2
| |
| * Include precedence parsing in parser macrosNadrieril2019-08-151-133/+187
| |
| * 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%