From b69030f36d1928f8e93afed3f821632973fd8717 Mon Sep 17 00:00:00 2001 From: Jean Privat Date: Wed, 8 Oct 2014 21:07:48 -0400 Subject: [PATCH] grammar: remove no before comma in idlist Signed-off-by: Jean Privat --- src/parser/nit.sablecc3xx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parser/nit.sablecc3xx b/src/parser/nit.sablecc3xx index fa6d955..dd54d0e 100644 --- a/src/parser/nit.sablecc3xx +++ b/src/parser/nit.sablecc3xx @@ -698,7 +698,7 @@ idlist {-> id*} ; idlist_nopar {-> id*} = {single} id {-> [id]} - | {more} idlist_nopar no comma [n2]:no id {-> [idlist_nopar.id, id]} + | {more} idlist_nopar comma [n2]:no id {-> [idlist_nopar.id, id]} ; module_name {-> module_name} -- 1.7.9.5