From: Jay Freeman (saurik) Date: Sat, 31 Oct 2009 18:47:17 +0000 (+0000) Subject: Forgot to add @ to ObjectiveC lexer for @"" support. X-Git-Tag: v0.9.432~217 X-Git-Url: https://git.saurik.com/cycript.git/commitdiff_plain/313708a920160155c9b9fa15e3337fbe2457ee58 Forgot to add @ to ObjectiveC lexer for @"" support. --- diff --git a/Cycript.l.in b/Cycript.l.in index 72f814d..0a9bbda 100644 --- a/Cycript.l.in +++ b/Cycript.l.in @@ -188,11 +188,14 @@ XMLName {XMLNameStart}{XMLNamePart}* @end @begin E4X -"@" L C return tk::At; "::" L C return tk::ColonColon; ".." L C return tk::PeriodPeriod; @end +@begin E4X ObjectiveC +"@" L C return tk::At; +@end + "&" L C return tk::Ampersand; "&&" L C return tk::AmpersandAmpersand; "&=" L C return tk::AmpersandEqual;