From 86b1481943d8a0bb28374669a9e48e30d5eae1c7 Mon Sep 17 00:00:00 2001 From: Schrottkatze Date: Wed, 24 Apr 2024 11:15:07 +0200 Subject: [PATCH] lang: remove empty recursive parser module --- crates/lang/src/parser/parser.rs | 6 ------ 1 file changed, 6 deletions(-) delete mode 100644 crates/lang/src/parser/parser.rs diff --git a/crates/lang/src/parser/parser.rs b/crates/lang/src/parser/parser.rs deleted file mode 100644 index 9ee53da..0000000 --- a/crates/lang/src/parser/parser.rs +++ /dev/null @@ -1,6 +0,0 @@ -//! The parser architecture is *heavily* inspired (and partially copied and adapted) from the amazing rust-analyzer -use drop_bomb::DropBomb; - -use self::{error::SyntaxError, events::Event, input::Input}; - -use super::syntax_kind::SyntaxKind;