From 039ea0ce2f7197c9dae2382e09cfdfb0ddf6021e Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Mon, 12 Jul 2010 01:05:30 +0000 Subject: [PATCH] Don't optimize {} to ; in the parser. --- Cycript.yy.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cycript.yy.in b/Cycript.yy.in index 224d6bf..22a601a 100644 --- a/Cycript.yy.in +++ b/Cycript.yy.in @@ -1264,7 +1264,7 @@ Block_ ; Block - : Block_ { if ($1) $$ = CYNew CYBlock($1); else $$ = CYNew CYEmpty(); } + : Block_ { $$ = CYNew CYBlock($1); } ; StatementList -- 2.47.2