Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
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. |