Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/parser/src/grammar.rs')
-rw-r--r--crates/parser/src/grammar.rs12
1 files changed, 0 insertions, 12 deletions
diff --git a/crates/parser/src/grammar.rs b/crates/parser/src/grammar.rs
index 5fbeca4432..42426a1df2 100644
--- a/crates/parser/src/grammar.rs
+++ b/crates/parser/src/grammar.rs
@@ -117,18 +117,6 @@ pub(crate) mod entry {
}
}
-pub(crate) mod entry_points {
- use super::*;
-
- pub(crate) fn stmt_optional_semi(p: &mut Parser) {
- expressions::stmt(p, expressions::StmtWithSemi::Optional, false);
- }
-
- pub(crate) fn attr(p: &mut Parser) {
- attributes::outer_attrs(p);
- }
-}
-
pub(crate) fn reparser(
node: SyntaxKind,
first_child: Option<SyntaxKind>,