From b7ce04d245f3fe44949e09e97f452964e84dcbda Mon Sep 17 00:00:00 2001 From: Ross Andrews Date: Sat, 11 May 2024 01:24:49 -0500 Subject: [PATCH] Squashed warning --- vasm_core/src/vasm_preprocessor.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vasm_core/src/vasm_preprocessor.rs b/vasm_core/src/vasm_preprocessor.rs index 522a55c..a706acd 100644 --- a/vasm_core/src/vasm_preprocessor.rs +++ b/vasm_core/src/vasm_preprocessor.rs @@ -11,7 +11,7 @@ pub struct Line { } #[derive(Debug, Clone, PartialEq)] -enum LoopType { +pub enum LoopType { While, Until, } @@ -27,7 +27,7 @@ impl From for LoopType { } #[derive(Debug, Clone, PartialEq)] -enum ControlStructure { +pub enum ControlStructure { Target(String), Loop(String, LoopType), LoopDo(String, String),