diff options
| author | 2023-08-01 04:22:52 +0200 | |
|---|---|---|
| committer | 2023-08-01 13:04:41 +0200 | |
| commit | 1521a08a20b6631b54d4ecbbbfcb4260e393bc97 (patch) | |
| tree | ed0322763c5cf7fe2f12a2cdc559068bd8a87df3 /askama_parser/src/lib.rs | |
| parent | 14df8e16c1b2803b23b4bf6eda3bc0e3a5fe5354 (diff) | |
| download | askama-1521a08a20b6631b54d4ecbbbfcb4260e393bc97.tar.gz askama-1521a08a20b6631b54d4ecbbbfcb4260e393bc97.tar.bz2 askama-1521a08a20b6631b54d4ecbbbfcb4260e393bc97.zip | |
parser: add type for `Node::Extends`
Diffstat (limited to 'askama_parser/src/lib.rs')
| -rw-r--r-- | askama_parser/src/lib.rs | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/askama_parser/src/lib.rs b/askama_parser/src/lib.rs index 6822233..bd7edde 100644 --- a/askama_parser/src/lib.rs +++ b/askama_parser/src/lib.rs @@ -16,8 +16,8 @@ use nom::{error_position, AsChar, IResult, InputTakeAtPosition};  pub use self::expr::Expr;  pub use self::node::{ -    BlockDef, Call, Cond, CondTest, If, Import, Include, Let, Lit, Loop, Macro, Match, Node, Raw, -    Target, When, Whitespace, Ws, +    BlockDef, Call, Cond, CondTest, Extends, If, Import, Include, Let, Lit, Loop, Macro, Match, +    Node, Raw, Target, When, Whitespace, Ws,  };  mod expr; | 
