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 | |
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')
-rw-r--r-- | askama_parser/src/lib.rs | 4 | ||||
-rw-r--r-- | askama_parser/src/node.rs | 38 |
2 files changed, 28 insertions, 14 deletions
diff --git a/askama_parser/src/lib.rs b/askama_parser/src/lib.rs index 8e90802..6822233 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, Let, Lit, Loop, Macro, Match, Node, Raw, Target, - When, Whitespace, Ws, + BlockDef, Call, Cond, CondTest, If, Import, Include, Let, Lit, Loop, Macro, Match, Node, Raw, + Target, When, Whitespace, Ws, }; mod expr; 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". |