Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix support for mixed case variables | Dirkjan Ochtman | 2024-01-18 | 1 | -4/+4 |
| | |||||
* | Improve performance of `find_used_templates` | max | 2024-01-17 | 1 | -1/+2 |
| | | | | Signed-off-by: max <gmx.sht@gmail.com> | ||||
* | Undo an accidental deletion of `#[derive(Debug)]` | max | 2023-12-07 | 1 | -0/+1 |
| | | | | Signed-off-by: max <gmx.sht@gmail.com> | ||||
* | Added testing for reserved variable names | max | 2023-12-07 | 1 | -1/+0 |
| | | | | Signed-off-by: max <gmx.sht@gmail.com> | ||||
* | Add better support for rust-like number literals (#908) | PizzasBear | 2023-11-22 | 1 | -5/+65 |
| | | | Signed-off-by: max <gmx.sht@gmail.com> | ||||
* | Create a type alias for all `IResult` to simplify code reading | Guillaume Gomez | 2023-10-25 | 1 | -37/+34 |
| | |||||
* | Improve error for invalid name used in `endblock` | Guillaume Gomez | 2023-10-25 | 1 | -1/+1 |
| | |||||
* | Create `ErrorContext` type | Guillaume Gomez | 2023-10-25 | 1 | -31/+97 |
| | |||||
* | Pass `Node` parsing level to expressions | René Kijewski | 2023-09-28 | 1 | -1/+1 |
| | |||||
* | Limit nesting in parser nodes, too | René Kijewski | 2023-09-28 | 1 | -0/+15 |
| | |||||
* | Move Level into the crate root | Dirkjan Ochtman | 2023-09-28 | 1 | -0/+15 |
| | |||||
* | Parse paths and identifiers only once | René Kijewski | 2023-08-03 | 1 | -24/+31 |
| | | | | | | | | | | | | | | In the old implementation each variable in an expression would be parsed up to three times: * Try to parse a path because it contains a leading double colon, or infix double colons. * Try to parse it as path again by scanning for an identifier that contains an upper case character. * Fall back to scanning for any identifier. This PR turns all three steps into one, without the need for backtracking. | ||||
* | parser: allow negative numbers in patterns | René Kijewski | 2023-08-02 | 1 | -1/+5 |
| | |||||
* | parser: better error message for unknown nodes | René Kijewski | 2023-08-02 | 1 | -8/+7 |
| | |||||
* | parser: remove re-exports `parser::{node,expr}::*` | René Kijewski | 2023-08-01 | 1 | -9/+6 |
| | |||||
* | parser: add type for `Node::Extends` | René Kijewski | 2023-08-01 | 1 | -2/+2 |
| | |||||
* | parser: add type for `Node::Include` | René Kijewski | 2023-08-01 | 1 | -2/+2 |
| | |||||
* | parser: rename `Node::Cond` into `If` and add type | René Kijewski | 2023-08-01 | 1 | -2/+2 |
| | |||||
* | parser: add type for `Node::Let` | René Kijewski | 2023-08-01 | 1 | -1/+1 |
| | |||||
* | parser: add type for `Node::Raw` | René Kijewski | 2023-08-01 | 1 | -1/+1 |
| | |||||
* | parser: add type for `Node::Lit` | René Kijewski | 2023-08-01 | 1 | -8/+2 |
| | |||||
* | parser: add type for `Node::BlockDef` | René Kijewski | 2023-08-01 | 1 | -1/+1 |
| | |||||
* | parser: add type for `Node::Match` | René Kijewski | 2023-08-01 | 1 | -1/+1 |
| | |||||
* | parser: add type for `Node::Call` | René Kijewski | 2023-08-01 | 1 | -1/+3 |
| | |||||
* | parser: add type for `Node::Import` | René Kijewski | 2023-08-01 | 1 | -1/+1 |
| | |||||
* | parser: add `Ast::nodes()` method | René Kijewski | 2023-08-01 | 1 | -0/+4 |
| | |||||
* | parser: impement `PartialEq` for `Ast` | René Kijewski | 2023-08-01 | 1 | -0/+7 |
| | |||||
* | parser: implement `Debug` for `Parsed` | René Kijewski | 2023-08-01 | 1 | -1/+9 |
| | |||||
* | parser: use `?` | René Kijewski | 2023-08-01 | 1 | -5/+1 |
| | |||||
* | parser: ensure correct drop order for `Parsed` | René Kijewski | 2023-08-01 | 1 | -2/+3 |
| | | | | | | | | | | | | | | | According to [RFC 1857] the fields of a struct are dropped in the same order as they are declared. For `struct S { a: A, b: B }` field `a` is dropped before field `b`. Our struct `Parsed` is self referencial. Its field `ast` depends on `source`, so `source` must outlife `ast`. This PR changes the order of the fields to reflect this requirement. In practice it should not matter, because we know that the variant of `Node` won't access the string data during their `Drop`, but better safe than sorry - maybe `Node` changes in the future. [RFC 1857]: https://rust-lang.github.io/rfcs/1857-stabilize-drop-order.html | ||||
* | parser: move node parsers into impl block | Dirkjan Ochtman | 2023-07-31 | 1 | -22/+2 |
| | |||||
* | parser: simplify top-level parser match | Dirkjan Ochtman | 2023-07-31 | 1 | -29/+24 |
| | |||||
* | parser: add top-level Ast type | Dirkjan Ochtman | 2023-07-31 | 1 | -33/+40 |
| | |||||
* | parser: move nested_parenthesis() helper into node module | Dirkjan Ochtman | 2023-07-31 | 1 | -48/+0 |
| | |||||
* | parser: move helper functions into State impl | Dirkjan Ochtman | 2023-07-31 | 1 | -61/+61 |
| | |||||
* | parser: move trait impl closer to type definition | Dirkjan Ochtman | 2023-07-31 | 1 | -11/+0 |
| | |||||
* | parser: move single-use functions into caller | Dirkjan Ochtman | 2023-07-31 | 1 | -13/+13 |
| | |||||
* | Extract askama_parser crate | Dirkjan Ochtman | 2023-07-31 | 1 | -0/+384 |