From e73211ec21f981a23bc56239055f9693fb8aa641 Mon Sep 17 00:00:00 2001 From: bryankenote Date: Wed, 10 Jan 2024 11:38:58 -0800 Subject: [PATCH] add optional semicolon to cfg --- src/main/kotlin/io/github/facilityapi/intellij/fsd.bnf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/io/github/facilityapi/intellij/fsd.bnf b/src/main/kotlin/io/github/facilityapi/intellij/fsd.bnf index 709d7a3..2b0c216 100644 --- a/src/main/kotlin/io/github/facilityapi/intellij/fsd.bnf +++ b/src/main/kotlin/io/github/facilityapi/intellij/fsd.bnf @@ -42,7 +42,7 @@ definition ::= (attribute_list* service_spec) markdown_remarks* -service_spec ::= service identifier service_items { pin=1 } +service_spec ::= service identifier service_items[;] { pin=1 } service_items ::= ('{' decorated_service_item* '}') | decorated_service_item decorated_service_item ::= attribute_list* service_item private service_item ::= (extern_decl | enum_spec | data_spec | method_spec | error_set_spec) { recoverWhile=service_item_recover }