diff options
author | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2023-10-06 11:48:22 +0200 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2023-11-01 12:52:09 +0100 |
commit | c951fcefcafe604136cf0263c6fd51716860b754 (patch) | |
tree | 9609aa6fac14529bcbb85ee985e000ab05cb4ac6 /askama_derive | |
parent | 1782b63caa092b0f81d15dfcbb7063ed363dba60 (diff) | |
download | askama-c951fcefcafe604136cf0263c6fd51716860b754.tar.gz askama-c951fcefcafe604136cf0263c6fd51716860b754.tar.bz2 askama-c951fcefcafe604136cf0263c6fd51716860b754.zip |
Implement Default for MapChain
Diffstat (limited to 'askama_derive')
-rw-r--r-- | askama_derive/src/generator.rs | 16 | ||||
-rw-r--r-- | askama_derive/src/lib.rs | 2 |
2 files changed, 10 insertions, 8 deletions
diff --git a/askama_derive/src/generator.rs b/askama_derive/src/generator.rs index 74d1869..8d120be 100644 --- a/askama_derive/src/generator.rs +++ b/askama_derive/src/generator.rs @@ -1775,13 +1775,6 @@ impl<'a, K: 'a, V: 'a> MapChain<'a, K, V> where K: cmp::Eq + hash::Hash, { - pub(crate) fn new() -> MapChain<'a, K, V> { - MapChain { - parent: None, - scopes: vec![HashMap::new()], - } - } - fn with_parent<'p>(parent: &'p MapChain<'_, K, V>) -> MapChain<'p, K, V> { MapChain { parent: Some(parent), @@ -1844,6 +1837,15 @@ impl MapChain<'_, &str, LocalMeta> { } } +impl<'a, K: Eq + hash::Hash, V> Default for MapChain<'a, K, V> { + fn default() -> Self { + Self { + parent: None, + scopes: vec![HashMap::new()], + } + } +} + /// Returns `true` if enough assumptions can be made, /// to determine that `self` is copyable. fn is_copyable(expr: &Expr<'_>) -> bool { diff --git a/askama_derive/src/lib.rs b/askama_derive/src/lib.rs index dc8ca75..37e8a3b 100644 --- a/askama_derive/src/lib.rs +++ b/askama_derive/src/lib.rs @@ -70,7 +70,7 @@ pub(crate) fn build_template(ast: &syn::DeriveInput) -> Result<String, CompileEr &input, &contexts, heritage.as_ref(), - MapChain::new(), + MapChain::default(), config.whitespace, ) .build(&contexts[input.path.as_path()])?; |