Starting a context for partial parameters.

This commit is contained in:
Tom Alexander
2020-05-08 20:58:32 -04:00
parent f240b877b8
commit 1a6db195cb
3 changed files with 8 additions and 1 deletions

View File

@@ -6,6 +6,7 @@ pub use parser::template;
pub use parser::Body;
pub use parser::DustTag;
pub use parser::Filter;
pub use parser::RValue;
pub use parser::Special;
pub use parser::Template;
pub use parser::TemplateElement;

View File

@@ -119,7 +119,7 @@ pub struct Partial<'a> {
}
#[derive(Clone, Debug, PartialEq)]
enum RValue<'a> {
pub enum RValue<'a> {
RVPath(Path<'a>),
RVString(String),
}