From f417a5e742f972d20f34b5b63086d6fb94d30014 Mon Sep 17 00:00:00 2001 From: Jakub Dundalek Date: Fri, 4 Oct 2024 23:22:54 +0000 Subject: [PATCH] [dot] Fix semicolon as attribute list separator (#4273) --- dot/DOT.g4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dot/DOT.g4 b/dot/DOT.g4 index 42615527c8..e1bc721037 100644 --- a/dot/DOT.g4 +++ b/dot/DOT.g4 @@ -59,7 +59,7 @@ attr_list ; a_list - : (id_ ( '=' id_)? ','?)+ + : (id_ ( '=' id_)? (';' | ',')?)+ ; edge_stmt