From a9172970548805db45188a352b2aafbc0e7b32e3 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Mon, 8 Jun 2026 15:07:12 -0700 Subject: It works! Lots to do, but it works. We have a lot of cleanup to do, remove debugging prints, and make it easier to use other structures and complex variable references, etc. --- src/lexer.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lexer.rs') diff --git a/src/lexer.rs b/src/lexer.rs index 0667d07..5ce7929 100644 --- a/src/lexer.rs +++ b/src/lexer.rs @@ -16,7 +16,7 @@ pub enum SymbolType<'a> { StartPoint, EndFlat, EndPoint, - Fragment, + View, Output, Show, Equals, @@ -228,7 +228,7 @@ impl<'a> Lexer<'a> { None } else { Some(Symbol::new( match s { - "fragment" => SymbolType::Fragment, + "view" => SymbolType::View, "show" => SymbolType::Show, "output" => SymbolType::Output, _ => SymbolType::Token(s) -- cgit v1.2.3