From ede96376b3da62c2d4814f586afabac99e95a95d Mon Sep 17 00:00:00 2001 From: serr Date: Tue, 13 May 2025 19:05:27 +0300 Subject: [PATCH] =?UTF-8?q?=D0=BF=D0=B0=D0=BA=D0=B5=D1=82=20=D0=B2=20?= =?UTF-8?q?=D0=B8=D0=BC=D0=BF=D0=BE=D1=80=D1=82=D0=B5=20=D0=BC=D0=BE=D0=B6?= =?UTF-8?q?=D0=B5=D1=82=20=D0=B1=D1=8B=D1=82=D1=8C=20=D1=81=20=D0=B8=D0=B4?= =?UTF-8?q?=D0=B5=D0=BD=D1=82=D0=B8=D1=84=D0=B8=D0=BA=D0=B0=D1=82=D0=BE?= =?UTF-8?q?=D1=80=D0=BE=D0=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- analyzers/test/test.y | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/analyzers/test/test.y b/analyzers/test/test.y index 1b320a3..054b543 100644 --- a/analyzers/test/test.y +++ b/analyzers/test/test.y @@ -116,7 +116,8 @@ import_declaration: ; import: - STRING_LITERAL { printf("\033[1;36mIMPORTED PACKAGE\n\033[0m"); } SEMICOLON + IDENTIFIER STRING_LITERAL { printf("\033[1;36mIMPORTED PACKAGE\n\033[0m"); } SEMICOLON + | STRING_LITERAL { printf("\033[1;36mIMPORTED PACKAGE\n\033[0m"); } SEMICOLON ; import_list: