From 01301e9c2c14b5f0ec301ce797b55039e95adf68 Mon Sep 17 00:00:00 2001 From: Ryan Chandler Date: Fri, 9 Dec 2022 22:35:38 +0000 Subject: [PATCH] chore: remove unused InfixOp enum --- src/parser/ast/mod.rs | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/parser/ast/mod.rs b/src/parser/ast/mod.rs index 966381a..b7ad221 100644 --- a/src/parser/ast/mod.rs +++ b/src/parser/ast/mod.rs @@ -587,17 +587,6 @@ pub struct ListItem { pub value: Expression, } -#[derive(Debug, Eq, PartialEq, Clone)] -pub enum InfixOp {} - -impl From for InfixOp { - fn from(k: TokenKind) -> Self { - match k { - _ => unreachable!(), - } - } -} - #[derive(Debug, Clone, PartialEq)] pub struct ElseIf { pub condition: Expression,