| Commit message (Expand) | Author | Files | Lines |
2019-11-11 | Run `cargo fmt` | Nadrieril | 2 | -9/+10 |
2019-09-20 | Update pest_consume dependency | Nadrieril | 1 | -0/+1 |
2019-09-18 | Extract pest_consume into its own crate | Nadrieril | 2 | -37/+28 |
2019-09-17 | Change invocation syntax of pest_consume::parser macro | Nadrieril | 1 | -1/+1 |
2019-09-17 | Remove need for slice_patterns in pest_consume | Nadrieril | 1 | -1/+0 |
2019-09-11 | Various tweaks | Nadrieril | 1 | -8/+6 |
2019-09-11 | Rename match_inputs to match_nodes to reflect new terminology | Nadrieril | 1 | -38/+38 |
2019-09-10 | No need to force user data to be a reference | Nadrieril | 1 | -11/+6 |
2019-09-10 | Rename various bits of the pest_consume API | Nadrieril | 1 | -3/+3 |
2019-09-10 | Tentatively derive pest::Parser normally | Nadrieril | 1 | -0/+1 |
2019-09-10 | Use proc_macro_hack to avoid the need for the proc_macro_hygiene feature | Nadrieril | 1 | -1/+0 |
2019-09-10 | Allows using match_inputs outside of a make_parser impl | Nadrieril | 1 | -18/+14 |
2019-09-10 | Implement parsing in PestConsumer | Nadrieril | 1 | -7/+7 |
2019-09-10 | Add dummy `entrypoint` attribute | Nadrieril | 1 | -0/+1 |
2019-09-10 | Use match_inputs for parser entrypoint | Nadrieril | 1 | -7/+13 |
2019-09-10 | Rename parse_children to match_inputs | Nadrieril | 1 | -37/+37 |
2019-09-10 | Generalize parse_children and change its invocation | Nadrieril | 1 | -36/+36 |
2019-09-09 | Move pest_consume into its own crate | Nadrieril | 2 | -129/+4 |
2019-09-09 | Make ParseInput independent from dhall-specific types | Nadrieril | 2 | -255/+261 |
2019-09-06 | Store Spans at every node when parsing | Nadrieril | 2 | -17/+51 |
2019-09-05 | Implement rule shortcutting, and cleanup make_parser code | Nadrieril | 1 | -6/+17 |
2019-09-05 | Implement rule aliasing and simplify parser code | Nadrieril | 1 | -246/+177 |
2019-09-03 | Add mapping functions to InterpolatedTextContents | Nadrieril | 1 | -0/+46 |
2019-09-03 | Resolve imports by mutating Expr instead of cloning it | Nadrieril | 5 | -225/+399 |
2019-09-03 | Move Canonicalize into resolve. | Fintan Halpenny | 2 | -75/+6 |
2019-09-03 | No need for as_ref call | Fintan Halpenny | 1 | -1/+1 |
2019-09-03 | No need to change the type of Embed when resolving anymore | Nadrieril | 2 | -14/+22 |
2019-09-03 | Upgrade rust toolchain | Nadrieril | 1 | -1/+0 |
2019-09-02 | Parse polymorphically in the Embed parameter | Nadrieril | 2 | -71/+78 |
2019-09-02 | Remove the notion of Directory and have File be the vector of components | Fintan Halpenny | 2 | -53/+19 |
2019-09-02 | We don't use the try_blocks feature anymore | Nadrieril | 1 | -1/+0 |
2019-09-02 | Use proper hygiene for `Parsers` and `Rule` | Nadrieril | 2 | -2/+8 |
2019-09-02 | Properly parse the argument of make_parser as an impl | Nadrieril | 1 | -1/+3 |
2019-09-02 | Get rid of EntryPoint magic | Nadrieril | 1 | -43/+48 |
2019-09-02 | Avoid use of bind_by_move_pattern_guards feature | Nadrieril | 1 | -1/+0 |
2019-09-01 | Make make_parser into a proc_macro_attribute | Nadrieril | 1 | -1/+2 |
2019-09-01 | Change parser macros to use a function-like syntax | Nadrieril | 3 | -748/+929 |
2019-09-01 | Rewrite the make_parser macro as a proc_macro | Nadrieril | 2 | -203/+7 |
2019-08-31 | Don't URL-decode path segments | Nadrieril | 3 | -23/+28 |
2019-08-31 | Implement parsing of `toMap` keyword | Nadrieril | 4 | -1/+23 |
2019-08-28 | Rename SubExpr to Expr, and Expr to RawExpr | Nadrieril | 4 | -72/+71 |
2019-08-27 | clippy | Nadrieril | 3 | -5/+5 |
2019-08-27 | s/token_rule/rule/ | Nadrieril | 1 | -20/+20 |
2019-08-27 | Rework parse macros to avoid the large ParsedValue enum | Nadrieril | 2 | -147/+139 |
2019-08-27 | Remove rule aliasing | Nadrieril | 1 | -107/+93 |
2019-08-26 | Wording | Nadrieril | 1 | -13/+13 |
2019-08-26 | Remove rule_group macro | Nadrieril | 1 | -22/+4 |
2019-08-26 | Match on rules in parser instead of on ParsedValues | Nadrieril | 2 | -25/+129 |
2019-08-16 | Use `!` type instead of custom empty type | Nadrieril | 4 | -15/+6 |
2019-08-15 | Include precedence parsing in parser macros | Nadrieril | 2 | -133/+188 |