I think I have the code for the select tag finished, but I haven't yet implemented any or none.

This commit is contained in:
Tom Alexander
2020-06-07 18:44:27 -04:00
parent 576d94780a
commit f1b868ce33
2 changed files with 43 additions and 6 deletions

View File

@@ -2,8 +2,8 @@ use crate::renderer::parameters_context::ParametersContext;
#[derive(Debug)]
pub struct SelectContext<'a> {
select_parameters: &'a ParametersContext<'a>,
were_any_true: bool,
pub select_parameters: &'a ParametersContext<'a>,
pub were_any_true: bool,
}
impl<'a> SelectContext<'a> {