From 10b9dc204257328b758692d9c714b576d3b0a1dc Mon Sep 17 00:00:00 2001 From: rvcas Date: Fri, 13 Oct 2023 16:56:03 -0400 Subject: [PATCH] chore: remove unused constants --- crates/aiken-lang/src/ast.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/crates/aiken-lang/src/ast.rs b/crates/aiken-lang/src/ast.rs index ea61375b..df21e88d 100644 --- a/crates/aiken-lang/src/ast.rs +++ b/crates/aiken-lang/src/ast.rs @@ -13,10 +13,8 @@ use std::{ }; use vec1::Vec1; -pub const ASSERT_VARIABLE: &str = "_try"; pub const CAPTURE_VARIABLE: &str = "_capture"; pub const PIPE_VARIABLE: &str = "_pipe"; -pub const TRY_VARIABLE: &str = "_try"; pub type TypedModule = Module; pub type UntypedModule = Module<(), UntypedDefinition>;