diff options
author | René Kijewski <rene.kijewski@fu-berlin.de> | 2023-08-01 04:07:07 +0200 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2023-08-01 13:04:41 +0200 |
commit | 14df8e16c1b2803b23b4bf6eda3bc0e3a5fe5354 (patch) | |
tree | 3581c0fb04975cb9feea6ef42eaeb98168017aa4 /askama_parser/src/node.rs | |
parent | c5c46ada406aea830293a22bcef64a0d6205b3f4 (diff) | |
download | askama-14df8e16c1b2803b23b4bf6eda3bc0e3a5fe5354.tar.gz askama-14df8e16c1b2803b23b4bf6eda3bc0e3a5fe5354.tar.bz2 askama-14df8e16c1b2803b23b4bf6eda3bc0e3a5fe5354.zip |
parser: add type for `Node::Include`
Diffstat (limited to 'askama_parser/src/node.rs')
-rw-r--r-- | askama_parser/src/node.rs | 38 |
1 files changed, 26 insertions, 12 deletions
diff --git a/askama_parser/src/node.rs b/askama_parser/src/node.rs index f7e51de..cb6da92 100644 --- a/askama_parser/src/node.rs +++ b/askama_parser/src/node.rs @@ -26,7 +26,7 @@ pub enum Node<'a> { Loop(Loop<'a>), Extends(&'a str), BlockDef(BlockDef<'a>), - Include(Ws, &'a str), + Include(Include<'a>), Import(Import<'a>), Macro(Macro<'a>), Raw(Raw<'a>), @@ -54,7 +54,7 @@ impl<'a> Node<'a> { |i| Self::r#for(i, s), map(|i| Match::parse(i, s), Self::Match), Self::extends, - Self::include, + map(Include::parse, Self::Include), map(Import::parse, Self::Import), map(|i| BlockDef::parse(i, s), Self::BlockDef), map(|i| Macro::parse(i, s), Self::Macro), @@ -140,16 +140,6 @@ impl<'a> Node<'a> { Ok((i, Self::Extends(name))) } - fn include(i: &'a str) -> IResult<&'a str, Self> { - let mut p = tuple(( - opt(Whitespace::parse), - ws(keyword("include")), - cut(pair(ws(str_lit), opt(Whitespace::parse))), - )); - let (i, (pws, _, (name, nws))) = p(i)?; - Ok((i, Self::Include(Ws(pws, nws), name))) - } - fn r#break(i: &'a str, s: &State<'_>) -> IResult<&'a str, Self> { let mut p = tuple(( opt(Whitespace::parse), @@ -843,6 +833,30 @@ impl<'a> If<'a> { } } +#[derive(Debug, PartialEq)] +pub struct Include<'a> { + pub ws: Ws, + pub path: &'a str, +} + +impl<'a> Include<'a> { + fn parse(i: &'a str) -> IResult<&'a str, Self> { + let mut p = tuple(( + opt(Whitespace::parse), + ws(keyword("include")), + cut(pair(ws(str_lit), opt(Whitespace::parse))), + )); + let (i, (pws, _, (path, nws))) = p(i)?; + Ok(( + i, + Self { + ws: Ws(pws, nws), + path, + }, + )) + } +} + /// First field is "minus/plus sign was used on the left part of the item". /// /// Second field is "minus/plus sign was used on the right part of the item". |