From: Jay Freeman (saurik) Date: Sun, 17 Jun 2012 00:44:41 +0000 (-0700) Subject: Do not assume lookahead (wish I could force it). X-Git-Tag: v0.9.458~5 X-Git-Url: https://git.saurik.com/cycript.git/commitdiff_plain/9417a6380a3b828f44584009384d8686cd8d7e59?ds=inline Do not assume lookahead (wish I could force it). --- diff --git a/Cycript.yy.in b/Cycript.yy.in index 1345060..465b32b 100644 --- a/Cycript.yy.in +++ b/Cycript.yy.in @@ -536,11 +536,11 @@ LexNoBrace ; LexNoFunction - : { driver.no_.Function = true; } + : { if (yychar == yyempty_) driver.no_.Function = true; else if (yychar == token::Function) yychar = token::Function_; } ; LexNoAtImplementation - : { driver.no_.AtImplementation = true; } + : { if (yychar == yyempty_) driver.no_.AtImplementation = true; else if (yychar == token::AtImplementation) yychar = token::AtImplementation_; } ; LexSetStatement