diff options
author | René Kijewski <rene.kijewski@fu-berlin.de> | 2023-01-30 13:09:49 +0100 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2023-01-30 14:19:46 +0100 |
commit | 63b98ec7d379768d771966c6aa44de20862e0994 (patch) | |
tree | 894aa4967a46890adf7af4ea0c06eac42afa0c46 /askama_derive/src/parser.rs | |
parent | 071106d94254d67388de64f0a7727732b345f413 (diff) | |
download | askama-63b98ec7d379768d771966c6aa44de20862e0994.tar.gz askama-63b98ec7d379768d771966c6aa44de20862e0994.tar.bz2 askama-63b98ec7d379768d771966c6aa44de20862e0994.zip |
Extends expects a string and nothing else
Diffstat (limited to '')
-rw-r--r-- | askama_derive/src/parser.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/askama_derive/src/parser.rs b/askama_derive/src/parser.rs index bcf9c58..5045731 100644 --- a/askama_derive/src/parser.rs +++ b/askama_derive/src/parser.rs @@ -24,7 +24,7 @@ pub(crate) enum Node<'a> { Cond(Vec<Cond<'a>>, Ws), Match(Ws, Expr<'a>, Vec<When<'a>>, Ws), Loop(Loop<'a>), - Extends(Expr<'a>), + Extends(&'a str), BlockDef(Ws, &'a str, Vec<Node<'a>>, Ws), Include(Ws, &'a str), Import(Ws, &'a str, &'a str), @@ -985,7 +985,7 @@ fn block_for<'a>(i: &'a str, s: &State<'_>) -> IResult<&'a str, Node<'a>> { } fn block_extends(i: &str) -> IResult<&str, Node<'_>> { - let (i, (_, name)) = tuple((ws(keyword("extends")), ws(expr_str_lit)))(i)?; + let (i, (_, name)) = tuple((ws(keyword("extends")), ws(str_lit)))(i)?; Ok((i, Node::Extends(name))) } |