Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2023-07-31 | parser: move node parsers into impl block | 1 | -22/+2 | ||
2023-07-31 | parser: simplify top-level parser match | 1 | -29/+24 | ||
2023-07-31 | parser: add top-level Ast type | 1 | -33/+40 | ||
2023-07-31 | parser: move nested_parenthesis() helper into node module | 1 | -48/+0 | ||
2023-07-31 | parser: move helper functions into State impl | 1 | -61/+61 | ||
2023-07-31 | parser: move trait impl closer to type definition | 1 | -11/+0 | ||
2023-07-31 | parser: move single-use functions into caller | 1 | -13/+13 | ||
2023-07-31 | Extract askama_parser crate | 1 | -15/+18 | ||
2023-07-31 | derive: move Parsed into parser module | 1 | -0/+34 | ||
2023-07-31 | derive: define separate ParseError type | 1 | -6/+17 | ||
2023-07-31 | derive: move Syntax into parser module | 1 | -1/+23 | ||
2023-06-28 | Parse templates once | 1 | -4/+1 | ||
2023-02-21 | Revert "derive: Make Config `'static`" | 1 | -13/+16 | ||
2023-01-30 | derive: refactor parser | 1 | -0/+314 | ||
`parser.rs` was a single file containing almost 2000 lines. This PR split the file into multiple, smaller files. `Expr`, `Node`, and `Target` each get an own file. Each struct gets a `parse()` method that return `Result<Self>`, and every other detail is private to the file. This PR should make this essential part of Askama more easy to understand, and make future modifications easier. |