Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Extract askama_parser crate | Dirkjan Ochtman | 2023-07-31 | 1 | -712/+0 |
| | |||||
* | derive: define separate ParseError type | Dirkjan Ochtman | 2023-07-31 | 1 | -2/+2 |
| | |||||
* | derive: move Syntax into parser module | Dirkjan Ochtman | 2023-07-31 | 1 | -2/+1 |
| | |||||
* | Fix Rust macro invocations not accepting a path (#837) | Matthew Taylor | 2023-07-24 | 1 | -0/+45 |
| | |||||
* | Revert "derive: Make Config `'static`" | René Kijewski | 2023-02-21 | 1 | -2/+2 |
| | |||||
* | derive: refactor parser | René Kijewski | 2023-01-30 | 1 | -0/+668 |
`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. |