From 298b012f92fd802047e0a1786751ef0d1ad7f31b Mon Sep 17 00:00:00 2001 From: minurajeeve Date: Tue, 31 Oct 2023 14:54:28 +0530 Subject: [PATCH] Fixing propertyList such that one or more property can be added in a propertyList. --- .../src/main/antlr4/io/cdap/wrangler/parser/Directives.g4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wrangler-core/src/main/antlr4/io/cdap/wrangler/parser/Directives.g4 b/wrangler-core/src/main/antlr4/io/cdap/wrangler/parser/Directives.g4 index c9d923da7..7c517ed6a 100644 --- a/wrangler-core/src/main/antlr4/io/cdap/wrangler/parser/Directives.g4 +++ b/wrangler-core/src/main/antlr4/io/cdap/wrangler/parser/Directives.g4 @@ -124,7 +124,7 @@ properties ; propertyList - : property (',' property)+ + : property (',' property)* ; property