Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge branch 'master' into fintan/canonicalize | Nadrieril Feneanar | 2019-10-12 | 1 | -0/+1 |
|\ | |||||
| * | Update pest_consume dependency | Nadrieril | 2019-09-20 | 1 | -0/+1 |
| | | |||||
* | | Merge branch 'master' into fintan/canonicalize | Nadrieril Feneanar | 2019-09-20 | 4 | -333/+234 |
|\| | |||||
| * | Extract pest_consume into its own crate | Nadrieril | 2019-09-18 | 2 | -37/+28 |
| | | |||||
| * | Change invocation syntax of pest_consume::parser macro | Nadrieril | 2019-09-17 | 1 | -1/+1 |
| | | |||||
| * | Remove need for slice_patterns in pest_consume | Nadrieril | 2019-09-17 | 1 | -1/+0 |
| | | |||||
| * | Various tweaks | Nadrieril | 2019-09-11 | 1 | -8/+6 |
| | | |||||
| * | Rename match_inputs to match_nodes to reflect new terminology | Nadrieril | 2019-09-11 | 1 | -38/+38 |
| | | |||||
| * | No need to force user data to be a reference | Nadrieril | 2019-09-10 | 1 | -11/+6 |
| | | |||||
| * | Rename various bits of the pest_consume API | Nadrieril | 2019-09-10 | 1 | -3/+3 |
| | | |||||
| * | Tentatively derive pest::Parser normally | Nadrieril | 2019-09-10 | 1 | -0/+1 |
| | | | | | | | | If it still creates spurious recompilations, I'll revert that | ||||
| * | Use proc_macro_hack to avoid the need for the proc_macro_hygiene feature | Nadrieril | 2019-09-10 | 1 | -1/+0 |
| | | |||||
| * | Allows using match_inputs outside of a make_parser impl | Nadrieril | 2019-09-10 | 1 | -18/+14 |
| | | |||||
| * | Implement parsing in PestConsumer | Nadrieril | 2019-09-10 | 1 | -7/+7 |
| | | |||||
| * | Add dummy `entrypoint` attribute | Nadrieril | 2019-09-10 | 1 | -0/+1 |
| | | |||||
| * | Use match_inputs for parser entrypoint | Nadrieril | 2019-09-10 | 1 | -7/+13 |
| | | |||||
| * | Rename parse_children to match_inputs | Nadrieril | 2019-09-10 | 1 | -37/+37 |
| | | |||||
| * | Generalize parse_children and change its invocation | Nadrieril | 2019-09-10 | 1 | -36/+36 |
| | | |||||
| * | Move pest_consume into its own crate | Nadrieril | 2019-09-09 | 2 | -129/+4 |
| | | |||||
| * | Make ParseInput independent from dhall-specific types | Nadrieril | 2019-09-09 | 2 | -255/+261 |
| | | |||||
| * | Store Spans at every node when parsing | Nadrieril | 2019-09-06 | 2 | -17/+51 |
| | | |||||
* | | Merge remote-tracking branch 'origin/master' into fintan/canonicalize | Fintan Halpenny | 2019-09-06 | 6 | -468/+646 |
|\| | |||||
| * | Implement rule shortcutting, and cleanup make_parser code | Nadrieril | 2019-09-05 | 1 | -6/+17 |
| | | |||||
| * | Implement rule aliasing and simplify parser code | Nadrieril | 2019-09-05 | 1 | -246/+177 |
| | | |||||
| * | Add mapping functions to InterpolatedTextContents | Nadrieril | 2019-09-03 | 1 | -0/+46 |
| | | |||||
| * | Resolve imports by mutating Expr instead of cloning it | Nadrieril | 2019-09-03 | 5 | -225/+399 |
| | | |||||
| * | No need to change the type of Embed when resolving anymore | Nadrieril | 2019-09-03 | 2 | -14/+22 |
| | | |||||
* | | Merge remote-tracking branch 'origin/fintan/canonicalize' into ↵ | Fintan Halpenny | 2019-09-06 | 4 | -951/+944 |
|\ \ | | | | | | | | | | fintan/canonicalize | ||||
| * | | Merge remote-tracking branch 'origin/master' into fintan/canonicalize | Nadrieril | 2019-09-03 | 4 | -951/+944 |
| |\| | |||||
| | * | Upgrade rust toolchain | Nadrieril | 2019-09-03 | 1 | -1/+0 |
| | | | |||||
| | * | Parse polymorphically in the Embed parameter | Nadrieril | 2019-09-02 | 2 | -71/+78 |
| | | | |||||
| | * | We don't use the try_blocks feature anymore | Nadrieril | 2019-09-02 | 1 | -1/+0 |
| | | | |||||
| | * | Use proper hygiene for `Parsers` and `Rule` | Nadrieril | 2019-09-02 | 2 | -2/+8 |
| | | | |||||
| | * | Properly parse the argument of make_parser as an impl | Nadrieril | 2019-09-02 | 1 | -1/+3 |
| | | | |||||
| | * | Get rid of EntryPoint magic | Nadrieril | 2019-09-02 | 1 | -43/+48 |
| | | | |||||
| | * | Avoid use of bind_by_move_pattern_guards feature | Nadrieril | 2019-09-02 | 1 | -1/+0 |
| | | | |||||
| | * | Make make_parser into a proc_macro_attribute | Nadrieril | 2019-09-01 | 1 | -1/+2 |
| | | | | | | | | | | | | That way rustfmt will format the contents of the parser. | ||||
| | * | Change parser macros to use a function-like syntax | Nadrieril | 2019-09-01 | 3 | -748/+929 |
| | | | | | | | | | | | | This makes the parser code look much less magical. | ||||
| | * | Rewrite the make_parser macro as a proc_macro | Nadrieril | 2019-09-01 | 2 | -203/+7 |
| | | | |||||
* | | | Move Canonicalize into resolve. | Fintan Halpenny | 2019-09-03 | 2 | -75/+6 |
| | | | | | | | | | | | | Rename File to FilePath and have more consistent naming. | ||||
* | | | No need for as_ref call | Fintan Halpenny | 2019-09-03 | 1 | -1/+1 |
|/ / | |||||
* | | Merge remote-tracking branch 'origin/master' into fintan/canonicalize | Fintan Halpenny | 2019-09-02 | 9 | -864/+728 |
|\| | |||||
| * | Don't URL-decode path segments | Nadrieril | 2019-08-31 | 3 | -23/+28 |
| | | |||||
| * | Implement parsing of `toMap` keyword | Nadrieril | 2019-08-31 | 4 | -1/+23 |
| | | |||||
| * | Rename SubExpr to Expr, and Expr to RawExpr | Nadrieril | 2019-08-28 | 4 | -72/+71 |
| | | | | | | | | For clarity, and consistency with Value | ||||
| * | clippy | Nadrieril | 2019-08-27 | 3 | -5/+5 |
| | | |||||
| * | s/token_rule/rule/ | Nadrieril | 2019-08-27 | 1 | -20/+20 |
| | | |||||
| * | Rework parse macros to avoid the large ParsedValue enum | Nadrieril | 2019-08-27 | 2 | -147/+139 |
| | | |||||
| * | Remove rule aliasing | Nadrieril | 2019-08-27 | 1 | -107/+93 |
| | | |||||
| * | Wording | Nadrieril | 2019-08-26 | 1 | -13/+13 |
| | |