From 9a51e7600128b31059c8d4c13a0f74531b2e8a2b Mon Sep 17 00:00:00 2001 From: Joao Duarte Date: Wed, 17 Jul 2024 20:18:36 -0300 Subject: [PATCH] fix(matching): Mark enum_declaration as a labelled node --- matching/src/matching_configuration.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/matching/src/matching_configuration.rs b/matching/src/matching_configuration.rs index bf42b81..296e829 100644 --- a/matching/src/matching_configuration.rs +++ b/matching/src/matching_configuration.rs @@ -27,6 +27,7 @@ impl From for MatchingConfiguration<'_> { "import_declaration", "class_declaration", "interface_declaration", + "enum_declaration" ] .into(), handlers: MatchingHandlers::from(Language::Java),