Implemented the renderer logic.

I should just need to implement ContextElement at this point.
This commit is contained in:
Tom Alexander
2020-05-08 22:22:30 -04:00
parent b45448edbd
commit 2f515e068d
3 changed files with 12 additions and 4 deletions

View File

@@ -115,7 +115,7 @@ pub struct ParameterizedBlock<'a> {
#[derive(Clone, Debug, PartialEq)]
pub struct Partial<'a> {
pub name: String,
params: Vec<KVPair<'a>>,
pub params: Vec<KVPair<'a>>,
}
#[derive(Clone, Debug, PartialEq)]