aboutsummaryrefslogtreecommitdiffstats
path: root/askama_derive/src/lib.rs
diff options
context:
space:
mode:
authorLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2018-06-21 12:17:45 +0200
committerLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2018-06-21 12:17:45 +0200
commitf05a924c49afb537b624cfe3cbef3a95b13759a2 (patch)
tree7c4b5d978c6e13a1a48d15caacc4291f89d8addd /askama_derive/src/lib.rs
parente09cdfaf1f9cca45ed320c3ad97f3502c48ff73d (diff)
downloadaskama-f05a924c49afb537b624cfe3cbef3a95b13759a2.tar.gz
askama-f05a924c49afb537b624cfe3cbef3a95b13759a2.tar.bz2
askama-f05a924c49afb537b624cfe3cbef3a95b13759a2.zip
Inline TemplateMeta into TemplateInput
Diffstat (limited to 'askama_derive/src/lib.rs')
-rw-r--r--askama_derive/src/lib.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/askama_derive/src/lib.rs b/askama_derive/src/lib.rs
index a2b4ace..dcae4d3 100644
--- a/askama_derive/src/lib.rs
+++ b/askama_derive/src/lib.rs
@@ -34,18 +34,18 @@ pub fn derive_template(input: TokenStream) -> TokenStream {
/// value as passed to the `template()` attribute.
fn build_template(ast: &syn::DeriveInput) -> String {
let input = input::TemplateInput::new(ast);
- let source = match input.meta.source {
+ let source = match input.source {
Source::Source(ref s) => s.clone(),
Source::Path(_) => path::get_template_source(&input.path)
};
let nodes = parser::parse(&source);
- if input.meta.print == Print::Ast || input.meta.print == Print::All {
+ if input.print == Print::Ast || input.print == Print::All {
println!("{:?}", nodes);
}
let code = generator::generate(&input, &nodes);
- if input.meta.print == Print::Code || input.meta.print == Print::All {
+ if input.print == Print::Code || input.print == Print::All {
println!("{}", code);
}
code