Squashed warning

This commit is contained in:
2024-05-11 01:24:49 -05:00
parent 3b7ce3eb26
commit b7ce04d245
+2 -2
View File
@@ -11,7 +11,7 @@ pub struct Line {
} }
#[derive(Debug, Clone, PartialEq)] #[derive(Debug, Clone, PartialEq)]
enum LoopType { pub enum LoopType {
While, While,
Until, Until,
} }
@@ -27,7 +27,7 @@ impl From<Macro> for LoopType {
} }
#[derive(Debug, Clone, PartialEq)] #[derive(Debug, Clone, PartialEq)]
enum ControlStructure { pub enum ControlStructure {
Target(String), Target(String),
Loop(String, LoopType), Loop(String, LoopType),
LoopDo(String, String), LoopDo(String, String),