From 05eb281f400bc1656f552b1d57f4018d236bfeb5 Mon Sep 17 00:00:00 2001 From: rvcas Date: Mon, 14 Aug 2023 17:20:02 -0400 Subject: [PATCH] chore: can safely remove this at this point --- crates/aiken-lang/src/ast.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/aiken-lang/src/ast.rs b/crates/aiken-lang/src/ast.rs index 243a2d0e..90600664 100644 --- a/crates/aiken-lang/src/ast.rs +++ b/crates/aiken-lang/src/ast.rs @@ -103,7 +103,6 @@ impl TypedModule { fn str_to_keyword(word: &str) -> Option { // Alphabetical keywords: match word { - "assert" => Some(Token::Expect), "expect" => Some(Token::Expect), "else" => Some(Token::Else), "is" => Some(Token::Is),