]>
Commit | Line | Data |
---|---|---|
b3378a02 | 1 | /* Cycript - Optimizing JavaScript Compiler/Runtime |
c1d3e52e | 2 | * Copyright (C) 2009-2015 Jay Freeman (saurik) |
d15b59f5 JF |
3 | */ |
4 | ||
f95d2598 | 5 | /* GNU Affero General Public License, Version 3 {{{ */ |
d15b59f5 | 6 | /* |
f95d2598 JF |
7 | * This program is free software: you can redistribute it and/or modify |
8 | * it under the terms of the GNU Affero General Public License as published by | |
9 | * the Free Software Foundation, either version 3 of the License, or | |
10 | * (at your option) any later version. | |
11 | ||
12 | * This program is distributed in the hope that it will be useful, | |
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
c15969fd | 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
f95d2598 JF |
15 | * GNU Affero General Public License for more details. |
16 | ||
17 | * You should have received a copy of the GNU Affero General Public License | |
18 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
b3378a02 | 19 | **/ |
d15b59f5 JF |
20 | /* }}} */ |
21 | ||
2155ab92 | 22 | /* XXX: supposedly I will be screwed on very very long multi-line comments and need to replace these with a manual lexer. http://websrv.cs.fsu.edu/~engelen/courses/COP5621/Pr2.pdf */ |
cb02f8ae | 23 | |
7c4c728d | 24 | %top{ |
1771224f JF |
25 | #if defined(__clang__) |
26 | #pragma clang diagnostic push | |
7c4c728d | 27 | #pragma clang diagnostic ignored "-Wunused-variable" |
1771224f | 28 | #pragma clang diagnostic ignored "-Wdeprecated-register" |
7c4c728d JF |
29 | #else |
30 | #pragma GCC diagnostic push | |
31 | #pragma GCC diagnostic ignored "-Wsign-compare" | |
32 | #pragma GCC diagnostic ignored "-Wunused-function" | |
33 | #pragma GCC diagnostic ignored "-Wunused-variable" | |
1771224f | 34 | #endif |
7c4c728d JF |
35 | } |
36 | ||
37 | %{ | |
1771224f | 38 | |
58afc6aa | 39 | #define YYLTYPE CYLocation |
63b4c5a8 JF |
40 | #include "Cycript.tab.hh" |
41 | typedef cy::parser::token tk; | |
693d501b | 42 | |
82a02ede JF |
43 | #include "Highlight.hpp" |
44 | ||
5999c315 | 45 | #define YY_EXTRA_TYPE CYDriver * |
db5e2840 | 46 | |
153c6dec | 47 | // do /not/ fold token to the return: this is a macro and the ordering is dependent |
82a02ede | 48 | #define F(value, highlight) do { \ |
153c6dec | 49 | int token(value); \ |
39ed6a51 | 50 | @begin ObjectiveC |
5602b1ee | 51 | yyextra->no_.AtImplementation = false; \ |
39ed6a51 | 52 | @end |
5602b1ee JF |
53 | yyextra->no_.Function = false; \ |
54 | yyextra->no_.OpenBrace = false; \ | |
82a02ede | 55 | yylval->highlight_ = highlight; \ |
153c6dec | 56 | return token; \ |
3ea7eed0 JF |
57 | } while (false) |
58 | ||
2c1d569a JF |
59 | #define P yyextra->pool_ |
60 | #define A new(P) | |
61 | #define Y P.strmemdup(yytext, yyleng) | |
2eb8215d | 62 | |
82a02ede | 63 | #define I(type, Type, value, highlight) do { \ |
2eb8215d | 64 | yylval->type ## _ = A CY ## Type; \ |
82a02ede | 65 | F(value, highlight); \ |
2eb8215d JF |
66 | } while (false) |
67 | ||
697d6fd2 | 68 | #define T yylval->newline_ = yyextra->state_ == CYNewLine; BEGIN(Div); |
db5e2840 JF |
69 | #define C T yyextra->state_ = CYClear; |
70 | #define R T yyextra->state_ = CYRestricted; | |
5befe15e JF |
71 | |
72 | #define N \ | |
73 | if (yyextra->state_ != CYNewLine) { \ | |
2eb8215d JF |
74 | if (yyextra->state_ != CYRestricted) \ |
75 | yyextra->state_ = CYNewLine; \ | |
76 | else { \ | |
5befe15e | 77 | yyextra->state_ = CYClear; \ |
82a02ede | 78 | F(tk::NewLine, hi::Nothing); \ |
2eb8215d | 79 | } \ |
5befe15e JF |
80 | } |
81 | ||
691e4717 | 82 | #define V(more) { \ |
cb02f8ae JF |
83 | if (const char *nl = reinterpret_cast<const char *>(memchr(yytext, '\n', yyleng))) { \ |
84 | unsigned lines(0); \ | |
85 | size_t left; \ | |
86 | do { \ | |
87 | ++lines; \ | |
88 | left = yyleng - (nl - yytext) - 1; \ | |
89 | nl = reinterpret_cast<const char *>(memchr(nl + 1, '\n', left)); \ | |
90 | } while (nl != NULL); \ | |
f89aaa11 | 91 | yylloc->step(); \ |
cb02f8ae JF |
92 | yylloc->end.lines(lines); \ |
93 | yylloc->end.columns(left); \ | |
691e4717 | 94 | more \ |
cb02f8ae JF |
95 | } else L \ |
96 | } | |
97 | ||
5befe15e JF |
98 | #define L { \ |
99 | yylloc->step(); \ | |
58afc6aa | 100 | yylloc->end.columns(yyleng); \ |
5befe15e | 101 | } |
e7ed5354 | 102 | |
abc79d6e JF |
103 | #define M { \ |
104 | if (yyextra->commented_) { \ | |
105 | I(comment, Comment(Y), tk::Comment, hi::Comment); \ | |
106 | } \ | |
107 | } | |
108 | ||
e31ea496 JF |
109 | #define E(message) { \ |
110 | CYDriver::Error error; \ | |
111 | error.location_ = *yylloc; \ | |
112 | error.message_ = "syntax error, " message; \ | |
113 | yyextra->errors_.push_back(error); \ | |
114 | yyterminate(); \ | |
115 | } | |
116 | ||
931b816a JF |
117 | int H(char c) { |
118 | if (c >= '0' && c <= '9') | |
119 | return c - '0'; | |
120 | if (c >= 'a' && c <= 'f') | |
121 | return c - 'a' + 10; | |
122 | if (c >= 'A' && c <= 'F') | |
123 | return c - 'A' + 10; | |
124 | return -1; | |
125 | } | |
126 | ||
ee6c04ef JF |
127 | static void U(char *&local, unsigned point) { |
128 | if (false) { | |
129 | } else if (point < 0x000080) { | |
130 | *local++ = point; | |
131 | } else if (point < 0x000800) { | |
132 | *local++ = 0xc0 | point >> 0x06 & 0x1f; | |
133 | goto one; | |
134 | } else if (point < 0x010000) { | |
135 | *local++ = 0xe0 | point >> 0x0c & 0x0f; | |
136 | goto two; | |
137 | } else if (point < 0x110000) { | |
138 | *local++ = 0xf0 | point >> 0x12 & 0x07; | |
139 | *local++ = 0x80 | point >> 0x0c & 0x3f; | |
140 | two: | |
141 | *local++ = 0x80 | point >> 0x06 & 0x3f; | |
142 | one: | |
143 | *local++ = 0x80 | point >> 0x00 & 0x3f; | |
144 | } else _assert(false); | |
145 | } | |
146 | ||
147 | static void U(char *&local, const char *text, yy_size_t &i) { | |
148 | unsigned point; | |
149 | ||
150 | char next(text[++i]); | |
151 | if (next != '{') { | |
152 | point = H(text[i + 0]) << 12 | H(text[i + 1]) << 8 | H(text[i + 2]) << 4 | H(text[i + 3]); | |
153 | i += 3; | |
154 | } else { | |
155 | point = 0; | |
156 | for (;;) { | |
157 | next = text[++i]; | |
158 | if (next == '}') | |
159 | break; | |
160 | point = (point << 4) | H(next); | |
161 | } | |
162 | } | |
163 | ||
164 | U(local, point); | |
165 | } | |
166 | ||
e7ed5354 | 167 | #define YY_INPUT(data, value, size) { \ |
d3b63265 | 168 | if (yyextra->data_.eof()) \ |
e7ed5354 JF |
169 | value = YY_NULL; \ |
170 | else { \ | |
d3b63265 JF |
171 | yyextra->data_.read(data, size); \ |
172 | size_t copy(yyextra->data_.gcount()); \ | |
173 | value = copy == 0 ? YY_NULL : copy; \ | |
e7ed5354 JF |
174 | } \ |
175 | } | |
176 | ||
e5332278 JF |
177 | %} |
178 | ||
179 | %option prefix="cy" | |
180 | %option bison-bridge | |
181 | %option bison-locations | |
af340def | 182 | %option nodefault |
e5332278 | 183 | %option noyywrap |
7b869615 | 184 | %option noyylineno |
e5332278 | 185 | %option nounput |
af340def JF |
186 | %option nounistd |
187 | %option 8bit | |
188 | %option backup | |
6c962f8b JF |
189 | %option batch |
190 | %option never-interactive | |
af340def | 191 | %option pointer |
924f67b2 | 192 | %option reentrant |
691e4717 | 193 | %option stack |
e5332278 | 194 | |
8c191568 JF |
195 | %option full |
196 | %option ecs | |
8c191568 | 197 | |
ee6c04ef JF |
198 | U1 [\x00-\x7f] |
199 | U0 [\x80-\xbf] | |
200 | U2 [\xc2-\xdf] | |
201 | U3 [\xe0-\xef] | |
202 | U4 [\xf0-\xf4] | |
e5332278 | 203 | |
ee6c04ef JF |
204 | HexDigit [0-9a-fA-F] |
205 | LineTerminatorSequence \r?\n|\r|\xe2\x80[\xa8\xa9] | |
206 | WhiteSpace [\x09\x0b\x0c\x20]|\xc2\xa0|\xef\xbb\xbf | |
207 | UnicodeEscape \\u({HexDigit}{4}|\{{HexDigit}+\}) | |
208 | ||
209 | OctalEscape \\[1-7]|\\[4-7][0-7]|\\[0-3][0-7][0-7]? | |
210 | StringEscape \\['"\\bfnrtv]|\\0|{OctalEscape}|\\x{HexDigit}{2}|{UnicodeEscape} | |
211 | StringExtra {StringEscape}|\\{LineTerminatorSequence} | |
212 | SingleString ([^'\\\n]|{StringExtra})* | |
213 | DoubleString ([^"\\\n]|{StringExtra})* | |
214 | StringPrefix '{SingleString}|\"{DoubleString} | |
215 | ||
216 | @include UnicodeIDStart.l | |
217 | @include UnicodeIDContinue.l | |
218 | ||
219 | IdentifierMore [$_] | |
220 | ||
221 | UnicodeStart {IdentifierMore}|{UnicodeIDStart} | |
222 | UnicodePart {IdentifierMore}|\xe2\x80[\x8c\x8d]|{UnicodeIDContinue} | |
223 | UnicodeFail {U2}|{U3}|{U3}{U0}|{U4}|{U4}{U0}|{U4}{U0}{U0} | |
224 | UnicodeScrap {UnicodePart}*{UnicodeFail}? | |
225 | ||
226 | IdentifierStart {UnicodeStart}|{UnicodeEscape} | |
227 | IdentifierPart {UnicodePart}|{UnicodeEscape} | |
228 | IdentifierFail {UnicodeFail}|\\(u({HexDigit}{0,3}|\{{HexDigit}*))? | |
229 | IdentifierScrap {IdentifierPart}*{IdentifierFail}? | |
63cd45c9 JF |
230 | |
231 | NonTerminator [^\n] | |
232 | BackslashSequence \\{NonTerminator} | |
233 | RegularExpressionFirstChar [^\n*\\/]|{BackslashSequence} | |
234 | RegularExpressionChar [^\n\\/]|{BackslashSequence} | |
ee6c04ef | 235 | RegularExpressionFlags {UnicodePart}* |
63cd45c9 | 236 | RegularExpressionChars {RegularExpressionChar}* |
697d6fd2 | 237 | RegularExpressionBody {RegularExpressionFirstChar}{RegularExpressionChars} |
63cd45c9 | 238 | |
691e4717 JF |
239 | @begin E4X |
240 | XMLNameStart [a-zA-Z_:] | |
241 | XMLNamePart [a-zA-Z0-9.-_:] | |
242 | XMLName {XMLNameStart}{XMLNamePart}* | |
243 | @end | |
244 | ||
697d6fd2 JF |
245 | %s Div |
246 | %s RegExp | |
63cd45c9 | 247 | |
691e4717 JF |
248 | @begin E4X |
249 | %x XMLContent | |
250 | %x XMLTag | |
251 | @end | |
252 | ||
e5332278 JF |
253 | %% |
254 | ||
aca28f96 | 255 | /* RegEx {{{ */ |
82a02ede | 256 | <RegExp>\/{RegularExpressionBody}\/{RegularExpressionFlags} L C I(literal, RegEx(Y), tk::RegularExpressionLiteral, hi::Constant); |
ee6c04ef | 257 | <RegExp>\/{RegularExpressionBody}\/{RegularExpressionFlags}{UnicodeFail} L E("invalid flags") |
e31ea496 | 258 | <RegExp>\/{RegularExpressionBody}?\\? L E("unterminated regex") |
aca28f96 JF |
259 | /* }}} */ |
260 | /* Comment {{{ */ | |
fc44232b | 261 | #![^\n]* L M |
abc79d6e | 262 | \/\/[^\n]* L M |
fe123f47 | 263 | |
aca28f96 JF |
264 | /* http://ostermiller.org/findcomment.html */ |
265 | /* XXX: unify these two rules using !? */ | |
82a02ede | 266 | \/\*!([^*]|[\r\n]|(\*+([^*/]|[\r\n])))*\*+\/ V() C I(comment, Comment(Y), tk::Comment, hi::Comment); |
abc79d6e | 267 | \/\*([^*]|[\r\n]|(\*+([^*/]|[\r\n])))*\*+\/ V(N) M |
e31ea496 | 268 | \/\*([^*]|[\r\n]|(\*+([^*/]|[\r\n])))*\** V() E("invalid comment") |
aca28f96 JF |
269 | /* }}} */ |
270 | /* Element {{{ */ | |
cb02f8ae | 271 | @begin E4X |
82a02ede JF |
272 | <RegExp>"<>" L F(tk::LeftRight, hi::Structure); |
273 | <XMLContent>"</>" L F(tk::LeftSlashRight, hi::Structure); | |
691e4717 | 274 | |
82a02ede JF |
275 | <RegExp,XMLContent>\<!\[CDATA\[(\n|[^[]|\[[^[]|\[\[[^>])*]]> V() F(tk::XMLCDATA, hi::Constant); |
276 | <RegExp,XMLContent>\<!--(\n|[^-]|-[^-])*--> V() F(tk::XMLComment, hi::Comment); | |
277 | <RegExp,XMLContent>\<?(\n|[^?]|\?[^>])*?> V() F(tk::XMLPI, hi::Meta); | |
691e4717 | 278 | |
82a02ede JF |
279 | <XMLTag>"=" L F(tk::Equal, hi::Structure); |
280 | <XMLTag>">" L F(tk::Right, hi::Structure); | |
281 | <XMLTag>"/>" L F(tk::SlashRight, hi::Structure); | |
282 | <XMLTag>"{" L F(tk::OpenBrace, hi::Structure); | |
691e4717 | 283 | |
82a02ede JF |
284 | <XMLTag>\"(\n|[^"])*\"|'(\n|[^'])*' V() F(tk::XMLAttributeValue, hi::Constant); |
285 | <XMLTag>{XMLName} L F(tk::XMLName, hi::Identifier); | |
286 | <XMLTag>[ \t\r\n] V() F(tk::XMLWhitespace, hi::Nothing); | |
db5e2840 | 287 | |
82a02ede JF |
288 | <XMLContent>"{" L F(tk::OpenBrace, hi::Structure); |
289 | <XMLContent>"<" L F(tk::Left, hi::Structure); | |
290 | <XMLContent>"</" L F(tk::LeftSlash, hi::Structure); | |
691e4717 | 291 | @end |
aca28f96 JF |
292 | /* }}} */ |
293 | /* Operator {{{ */ | |
82a02ede | 294 | "..." L C F(tk::PeriodPeriodPeriod, hi::Meta); |
e31ea496 | 295 | ".." L E("invalid operator") |
c8a0500b | 296 | |
691e4717 | 297 | @begin E4X |
82a02ede JF |
298 | "::" L C F(tk::ColonColon, hi::Operator); |
299 | ".." L C F(tk::PeriodPeriod, hi::Operator); | |
cb02f8ae | 300 | @end |
ac9a5ce1 | 301 | |
313708a9 | 302 | @begin E4X ObjectiveC |
82a02ede | 303 | "@" L C F(tk::At, hi::Operator); |
ac9d4181 | 304 | "#" L C F(tk::Pound, hi::Operator); |
313708a9 JF |
305 | @end |
306 | ||
82a02ede JF |
307 | "&" L C F(tk::Ampersand, hi::Operator); |
308 | "&&" L C F(tk::AmpersandAmpersand, hi::Operator); | |
309 | "&=" L C F(tk::AmpersandEqual, hi::Operator); | |
310 | "^" L C F(tk::Carrot, hi::Operator); | |
311 | "^=" L C F(tk::CarrotEqual, hi::Operator); | |
312 | "=" L C F(tk::Equal, hi::Operator); | |
313 | "==" L C F(tk::EqualEqual, hi::Operator); | |
314 | "===" L C F(tk::EqualEqualEqual, hi::Operator); | |
6265f0de | 315 | "=>" L C F(yylval->newline_ ? tk::EqualRight_ : tk::EqualRight, hi::Operator); |
82a02ede JF |
316 | "!" L C F(tk::Exclamation, hi::Operator); |
317 | "!=" L C F(tk::ExclamationEqual, hi::Operator); | |
318 | "!==" L C F(tk::ExclamationEqualEqual, hi::Operator); | |
319 | "-" L C F(tk::Hyphen, hi::Operator); | |
320 | "-=" L C F(tk::HyphenEqual, hi::Operator); | |
321 | "--" L C F(yylval->newline_ ? tk::HyphenHyphen_ : tk::HyphenHyphen, hi::Operator); | |
322 | "->" L C F(tk::HyphenRight, hi::Operator); | |
323 | "<" L C F(tk::Left, hi::Operator); | |
324 | "<=" L C F(tk::LeftEqual, hi::Operator); | |
325 | "<<" L C F(tk::LeftLeft, hi::Operator); | |
326 | "<<=" L C F(tk::LeftLeftEqual, hi::Operator); | |
327 | "%" L C F(tk::Percent, hi::Operator); | |
328 | "%=" L C F(tk::PercentEqual, hi::Operator); | |
329 | "." L C F(tk::Period, hi::Operator); | |
330 | "|" L C F(tk::Pipe, hi::Operator); | |
331 | "|=" L C F(tk::PipeEqual, hi::Operator); | |
332 | "||" L C F(tk::PipePipe, hi::Operator); | |
333 | "+" L C F(tk::Plus, hi::Operator); | |
334 | "+=" L C F(tk::PlusEqual, hi::Operator); | |
335 | "++" L C F(yylval->newline_ ? tk::PlusPlus_ : tk::PlusPlus, hi::Operator); | |
336 | ">" L C F(tk::Right, hi::Operator); | |
337 | ">=" L C F(tk::RightEqual, hi::Operator); | |
338 | ">>" L C F(tk::RightRight, hi::Operator); | |
339 | ">>=" L C F(tk::RightRightEqual, hi::Operator); | |
340 | ">>>" L C F(tk::RightRightRight, hi::Operator); | |
341 | ">>>=" L C F(tk::RightRightRightEqual, hi::Operator); | |
342 | "*" L C F(tk::Star, hi::Operator); | |
343 | "*=" L C F(tk::StarEqual, hi::Operator); | |
344 | "~" L C F(tk::Tilde, hi::Operator); | |
345 | ||
346 | <Div>"/" L C F(tk::Slash, hi::Operator); | |
347 | <Div>"/=" L C F(tk::SlashEqual, hi::Operator); | |
348 | ||
349 | ":" L C F(tk::Colon, hi::Structure); | |
350 | "," L C F(tk::Comma, hi::Structure); | |
351 | "?" L C F(tk::Question, hi::Structure); | |
352 | ";" L C F(tk::SemiColon, hi::Structure); | |
353 | ||
354 | "(" L C F(tk::OpenParen, hi::Structure); | |
355 | ")" L C F(tk::CloseParen, hi::Structure); | |
356 | ||
357 | "{" L C F(yyextra->no_.OpenBrace ? tk::OpenBrace__ : yylval->newline_ ? tk::OpenBrace_ : tk::OpenBrace, hi::Structure); | |
358 | "}" L C F(tk::CloseBrace, hi::Structure); | |
359 | ||
360 | "[" L C F(tk::OpenBracket, hi::Structure); | |
361 | "]" L C F(tk::CloseBracket, hi::Structure); | |
aca28f96 JF |
362 | /* }}} */ |
363 | /* Keyword {{{ */ | |
dc5d7cf4 JF |
364 | "@error" L C F(tk::AtError, hi::Error); |
365 | ||
1ba6903e | 366 | @begin Java |
82a02ede | 367 | "@class" L C F(tk::AtClass, hi::Meta); |
1ba6903e JF |
368 | @end |
369 | ||
8a2eb1be | 370 | @begin C |
46f4f308 | 371 | "@encode" L C F(tk::AtEncode, hi::Meta); |
8a2eb1be JF |
372 | @end |
373 | ||
374 | @begin ObjectiveC | |
82a02ede | 375 | "@end" L C F(tk::AtEnd, hi::Meta); |
aca28f96 | 376 | "@false" L C F(tk::AtFalse, hi::Constant); |
82a02ede | 377 | "@implementation" L C F(yyextra->no_.AtImplementation ? tk::AtImplementation_ : tk::AtImplementation, hi::Meta); |
73439a14 | 378 | "@import" L C F(tk::AtImport, hi::Special); |
4ea461c0 | 379 | "@NO" L C F(tk::AtNo, hi::Constant); |
aca28f96 JF |
380 | "@null" L C F(tk::AtNull, hi::Constant); |
381 | "@selector" L C F(tk::AtSelector, hi::Meta); | |
4ea461c0 | 382 | "@true" L C F(tk::AtTrue, hi::Constant); |
aca28f96 JF |
383 | "@YES" L C F(tk::AtYes, hi::Constant); |
384 | @end | |
4ea461c0 | 385 | |
aca28f96 JF |
386 | @({UnicodeStart}{UnicodeScrap}|{UnicodeFail}) L E("invalid keyword") |
387 | /* }}} */ | |
388 | /* Highlight {{{ */ | |
389 | "undefined" L C I(identifier, Identifier("undefined"), tk::Identifier_, hi::Operator); | |
8b820c00 | 390 | |
aca28f96 JF |
391 | @begin ObjectiveC |
392 | "bool" L C I(identifier, Identifier("bool"), tk::Identifier_, hi::Type); | |
393 | "BOOL" L C I(identifier, Identifier("BOOL"), tk::Identifier_, hi::Type); | |
394 | "id" L C I(identifier, Identifier("id"), tk::Identifier_, hi::Type); | |
395 | "nil" L C I(identifier, Identifier("nil"), tk::Identifier_, hi::Constant); | |
396 | "NULL" L C I(identifier, Identifier("NULL"), tk::Identifier_, hi::Constant); | |
397 | "SEL" L C I(identifier, Identifier("SEL"), tk::Identifier_, hi::Type); | |
cb02f8ae | 398 | @end |
aca28f96 JF |
399 | /* }}} */ |
400 | /* Reserved {{{ */ | |
d6e7cafb JF |
401 | "abstract" L C /*FII*/ F(tk::Abstract, hi::Meta); |
402 | "await" L C /*II?*/ F(tk::Await, hi::Meta); | |
403 | "boolean" L C /*FII*/ F(tk::Boolean, hi::Type); | |
aca28f96 | 404 | "break" L R /*KKK*/ F(tk::Break, hi::Control); |
d6e7cafb | 405 | "byte" L C /*FII*/ F(tk::Byte, hi::Type); |
aca28f96 JF |
406 | "case" L C /*KKK*/ F(tk::Case, hi::Control); |
407 | "catch" L C /*KKK*/ F(tk::Catch, hi::Control); | |
d6e7cafb | 408 | "char" L C /*FII*/ F(tk::Char, hi::Type); |
aca28f96 JF |
409 | "class" L C /*FFK*/ F(tk::Class, hi::Meta); |
410 | "const" L C /*FFK*/ F(tk::Const, hi::Meta); | |
411 | "continue" L R /*KKK*/ F(tk::Continue, hi::Control); | |
412 | "debugger" L C /*FKK*/ F(tk::Debugger, hi::Meta); | |
413 | "default" L C /*KKK*/ F(tk::Default, hi::Control); | |
414 | "delete" L C /*KKK*/ F(tk::Delete, hi::Operator); | |
415 | "do" L C /*KKK*/ F(tk::Do, hi::Control); | |
d6e7cafb | 416 | "double" L C /*FII*/ F(tk::Double, hi::Type); |
aca28f96 JF |
417 | "else" L C /*KKK*/ F(tk::Else, hi::Control); |
418 | "enum" L C /*FFF*/ F(tk::Enum, hi::Meta); | |
419 | "export" L C /*FFK*/ F(tk::Export, hi::Meta); | |
420 | "extends" L C /*FFK*/ F(tk::Extends, hi::Meta); | |
421 | "false" L C /*LLL*/ F(tk::False, hi::Constant); | |
d6e7cafb | 422 | "final" L C /*FII*/ F(tk::Final, hi::Meta); |
aca28f96 | 423 | "finally" L C /*KKK*/ F(tk::Finally, hi::Control); |
d6e7cafb | 424 | "float" L C /*FII*/ F(tk::Float, hi::Type); |
aca28f96 JF |
425 | "for" L C /*KKK*/ F(tk::For, hi::Control); |
426 | "function" L C /*KKK*/ F(yyextra->no_.Function ? tk::Function_ : tk::Function, hi::Meta); | |
d6e7cafb | 427 | "goto" L C /*FII*/ F(tk::Goto, hi::Control); |
aca28f96 | 428 | "if" L C /*KKK*/ F(tk::If, hi::Control); |
d6e7cafb | 429 | "implements" L C /*FSS*/ F(tk::Implements, hi::Meta); |
aca28f96 JF |
430 | "import" L C /*FFK*/ F(tk::Import, hi::Meta); |
431 | "in" L C /*KKK*/ F(yyextra->in_.top() ? tk::In_ : tk::In, hi::Operator); | |
432 | "instanceof" L C /*KKK*/ F(tk::InstanceOf, hi::Operator); | |
d6e7cafb JF |
433 | "int" L C /*FII*/ F(tk::Int, hi::Type); |
434 | "interface" L C /*FSS*/ F(tk::Interface, hi::Meta); | |
435 | "let" L C /*IS?*/ F(tk::Let, hi::Meta); | |
436 | "long" L C /*FII*/ F(tk::Long, hi::Type); | |
437 | "native" L C /*FII*/ F(tk::Native, hi::Meta); | |
aca28f96 JF |
438 | "new" L C /*KKK*/ F(tk::New, hi::Operator); |
439 | "null" L C /*LLL*/ F(tk::Null, hi::Constant); | |
d6e7cafb JF |
440 | "package" L C /*FSS*/ F(tk::Package, hi::Meta); |
441 | "private" L C /*FSS*/ F(tk::Private, hi::Meta); | |
442 | "protected" L C /*FSS*/ F(tk::Protected, hi::Meta); | |
443 | "public" L C /*FSS*/ F(tk::Public, hi::Meta); | |
aca28f96 | 444 | "return" L R /*KKK*/ F(tk::Return, hi::Control); |
d6e7cafb JF |
445 | "short" L C /*FII*/ F(tk::Short, hi::Type); |
446 | "static" L C /*FS?*/ F(tk::Static, hi::Meta); | |
aca28f96 JF |
447 | "super" L C /*FFK*/ F(tk::Super, hi::Constant); |
448 | "switch" L C /*KKK*/ F(tk::Switch, hi::Control); | |
d6e7cafb | 449 | "synchronized" L C /*FII*/ F(tk::Synchronized, hi::Meta); |
aca28f96 JF |
450 | "this" L C /*KKK*/ F(tk::This, hi::Constant); |
451 | "throw" L R /*KKK*/ F(tk::Throw, hi::Control); | |
d6e7cafb JF |
452 | "throws" L C /*FII*/ F(tk::Throws, hi::Meta); |
453 | "transient" L C /*FII*/ F(tk::Transient, hi::Meta); | |
aca28f96 JF |
454 | "true" L C /*LLL*/ F(tk::True, hi::Constant); |
455 | "try" L C /*KKK*/ F(tk::Try, hi::Control); | |
456 | "typeof" L C /*KKK*/ F(tk::TypeOf, hi::Operator); | |
457 | "var" L C /*KKK*/ F(tk::Var, hi::Meta); | |
458 | "void" L C /*KKK*/ F(tk::Void, hi::Operator); | |
d6e7cafb | 459 | "volatile" L C /*FII*/ F(tk::Volatile, hi::Meta); |
aca28f96 JF |
460 | "while" L C /*KKK*/ F(tk::While, hi::Control); |
461 | "with" L C /*KKK*/ F(tk::With, hi::Control); | |
d6e7cafb | 462 | "yield" L R /*IS?*/ F(tk::Yield, hi::Control); |
aca28f96 JF |
463 | |
464 | "auto" L C F(tk::Auto, hi::Meta); | |
d6e7cafb JF |
465 | "each" L C F(tk::Each, hi::Control); |
466 | "of" L C F(tk::Of, hi::Operator); | |
d35a3b07 | 467 | |
aca28f96 | 468 | @begin C |
d6e7cafb JF |
469 | "extern" L C F(tk::Extern, hi::Type); |
470 | "signed" L C F(tk::Signed, hi::Type); | |
471 | "typedef" L C F(tk::Typedef, hi::Meta); | |
472 | "unsigned" L C F(tk::Unsigned, hi::Type); | |
aca28f96 | 473 | @end |
5d646fb5 | 474 | |
aca28f96 | 475 | @begin ObjectiveC |
d6e7cafb JF |
476 | "NO" L C F(tk::No, hi::Constant); |
477 | "YES" L C F(tk::Yes, hi::Constant); | |
691e4717 JF |
478 | @end |
479 | ||
aca28f96 | 480 | @begin E4X |
d6e7cafb JF |
481 | "namespace" L C F(tk::Namespace, hi::Meta); |
482 | "xml" L C F(tk::XML, hi::Meta); | |
aca28f96 JF |
483 | @end |
484 | /* }}} */ | |
485 | /* Identifier {{{ */ | |
ee6c04ef JF |
486 | {UnicodeStart}{UnicodePart}* L C I(identifier, Identifier(Y), tk::Identifier_, hi::Identifier); |
487 | ||
488 | {IdentifierStart}{IdentifierPart}* L C { | |
489 | char *value(A char[yyleng + 1]); | |
490 | char *local(value); | |
491 | ||
492 | for (yy_size_t i(0), e(yyleng); i != e; ++i) { | |
493 | char next(yytext[i]); | |
494 | if (next != '\\') | |
495 | *local++ = next; | |
496 | else | |
497 | U(local, yytext, ++i); | |
498 | } | |
499 | ||
500 | *local = '\0'; | |
501 | I(identifier, Identifier(value), tk::Identifier_, hi::Identifier); | |
502 | } | |
503 | ||
504 | ({IdentifierStart}{IdentifierPart}*)?{IdentifierFail} L E("invalid identifier") | |
aca28f96 JF |
505 | /* }}} */ |
506 | /* Number {{{ */ | |
a703494a JF |
507 | 0[0-7]+ L C I(number, Number(strtoull(yytext + 1, NULL, 8)), tk::NumericLiteral, hi::Constant); |
508 | 0[0-9]+ L C I(number, Number(strtoull(yytext + 1, NULL, 10)), tk::NumericLiteral, hi::Constant); | |
5d646fb5 | 509 | |
82a02ede | 510 | 0[xX][0-9a-fA-F]+ L C I(number, Number(strtoull(yytext + 2, NULL, 16)), tk::NumericLiteral, hi::Constant); |
a703494a | 511 | 0[oO][0-7]+ L C I(number, Number(strtoull(yytext + 2, NULL, 8)), tk::NumericLiteral, hi::Constant); |
82a02ede | 512 | 0[bB][0-1]+ L C I(number, Number(strtoull(yytext + 2, NULL, 2)), tk::NumericLiteral, hi::Constant); |
5befe15e | 513 | |
e31ea496 | 514 | (\.[0-9]+|(0|[1-9][0-9]*)(\.[0-9]*)?)([eE][+-]?[0-9]+)? L C I(number, Number(strtod(yytext, NULL)), tk::NumericLiteral, hi::Constant); |
ee6c04ef JF |
515 | (\.[0-9]+|(0|[1-9][0-9]*)(\.[0-9]*)?)[eE][+-]?{IdentifierScrap} L E("invalid exponent") |
516 | (\.?[0-9]|(0|[1-9][0-9]*)\.){IdentifierScrap} L E("invalid number") | |
aca28f96 JF |
517 | /* }}} */ |
518 | /* String {{{ */ | |
ee6c04ef | 519 | '{SingleString}'|\"{DoubleString}\" L C { |
2eb8215d | 520 | char *value(A char[yyleng]); |
931b816a JF |
521 | char *local(value); |
522 | ||
66f8d960 | 523 | for (yy_size_t i(1), e(yyleng - 1); i != e; ++i) { |
931b816a JF |
524 | char next(yytext[i]); |
525 | ||
526 | if (yytext[i] == '\\') | |
ee6c04ef JF |
527 | // XXX: support more line continuation characters |
528 | if (false) line: { | |
529 | yylloc->end.lines(1); | |
530 | yylloc->end.columns(yyleng - i); | |
531 | } else switch (next = yytext[++i]) { | |
532 | case '\n': goto line; | |
533 | ||
931b816a JF |
534 | case '\\': next = '\\'; break; |
535 | case '\'': next = '\''; break; | |
536 | case '"': next = '"'; break; | |
537 | case 'b': next = '\b'; break; | |
538 | case 'f': next = '\f'; break; | |
539 | case 'n': next = '\n'; break; | |
540 | case 'r': next = '\r'; break; | |
541 | case 't': next = '\t'; break; | |
542 | case 'v': next = '\v'; break; | |
a703494a JF |
543 | |
544 | case '0': case '1': case '2': case '3': | |
545 | if (yytext[i + 1] < '0' || yytext[i + 1] > '7') | |
546 | next = H(yytext[i]), i += 0; | |
547 | else if (yytext[i + 2] < '0' || yytext[i + 2] > '7') | |
548 | next = H(yytext[i]) << 3 | H(yytext[i + 1]), i += 1; | |
549 | else | |
550 | next = H(yytext[i]) << 6 | H(yytext[i + 1]) << 3 | H(yytext[i + 2]), i += 2; | |
551 | break; | |
552 | ||
553 | case '4': case '5': case '6': case '7': | |
554 | if (yytext[i + 1] < '0' || yytext[i + 1] > '7') | |
555 | next = H(yytext[i]), i += 0; | |
556 | else | |
557 | next = H(yytext[i]) << 3 | H(yytext[i + 1]), i += 1; | |
558 | break; | |
931b816a JF |
559 | |
560 | case 'x': | |
ee6c04ef | 561 | U(local, H(yytext[i + 1]) << 4 | H(yytext[i + 2])); |
931b816a | 562 | i += 2; |
ee6c04ef JF |
563 | continue; |
564 | ||
565 | case 'u': | |
566 | U(local, yytext, i); | |
567 | continue; | |
931b816a JF |
568 | } |
569 | ||
570 | *local++ = next; | |
571 | } | |
572 | ||
573 | *local = '\0'; | |
82a02ede | 574 | I(string, String(value, local - value), tk::StringLiteral, hi::Constant); |
931b816a | 575 | } |
5befe15e | 576 | |
ee6c04ef JF |
577 | {StringPrefix}\\(x.{0,2}|u([^{].{0,3}|\{[^}]*)?|{UnicodeFail})? L E("invalid escape") |
578 | {StringPrefix} L E("invalid string") | |
aca28f96 | 579 | /* }}} */ |
e31ea496 | 580 | |
ee6c04ef | 581 | {LineTerminatorSequence} yylloc->step(); yylloc->end.lines(); N |
ee6c04ef | 582 | {WhiteSpace} L |
7e5391fd | 583 | |
82a02ede | 584 | <<EOF>> if (yyextra->auto_) { yyextra->auto_ = false; F(tk::AutoComplete, hi::Nothing); } L yyterminate(); |
94d55b5c | 585 | |
ee6c04ef | 586 | . L E("invalid character") |
924f67b2 JF |
587 | |
588 | %% | |
589 | ||
5999c315 | 590 | void CYDriver::ScannerInit() { |
924f67b2 JF |
591 | cylex_init(&scanner_); |
592 | cyset_extra(this, scanner_); | |
593 | } | |
594 | ||
5999c315 | 595 | void CYDriver::ScannerDestroy() { |
924f67b2 JF |
596 | cylex_destroy(scanner_); |
597 | } | |
63cd45c9 | 598 | |
691e4717 JF |
599 | CYDriver::Condition CYDriver::GetCondition() { |
600 | switch (yy_top_state(scanner_)) { | |
601 | case RegExp: | |
602 | return RegExpCondition; | |
603 | @begin E4X | |
604 | case XMLContent: | |
605 | return XMLContentCondition; | |
606 | case XMLTag: | |
607 | return XMLTagCondition; | |
608 | @end | |
609 | default: | |
610 | _assert(false); | |
611 | } | |
612 | } | |
613 | ||
614 | void CYDriver::SetCondition(Condition condition) { | |
63cd45c9 JF |
615 | struct yyguts_t *yyg(reinterpret_cast<struct yyguts_t *>(scanner_)); |
616 | ||
617 | switch (condition) { | |
697d6fd2 JF |
618 | case RegExpCondition: |
619 | BEGIN(RegExp); | |
63cd45c9 | 620 | break; |
691e4717 JF |
621 | @begin E4X |
622 | case XMLContentCondition: | |
623 | BEGIN(XMLContent); | |
624 | break; | |
625 | case XMLTagCondition: | |
626 | BEGIN(XMLTag); | |
627 | break; | |
628 | @end | |
63cd45c9 JF |
629 | default: |
630 | _assert(false); | |
631 | } | |
632 | } | |
691e4717 JF |
633 | |
634 | void CYDriver::PushCondition(Condition condition) { | |
635 | switch (condition) { | |
636 | case RegExpCondition: | |
637 | yy_push_state(RegExp, scanner_); | |
638 | break; | |
639 | @begin E4X | |
640 | case XMLContentCondition: | |
641 | yy_push_state(XMLContent, scanner_); | |
642 | break; | |
643 | case XMLTagCondition: | |
644 | yy_push_state(XMLTag, scanner_); | |
645 | break; | |
646 | @end | |
647 | default: | |
648 | _assert(false); | |
649 | } | |
650 | } | |
651 | ||
652 | void CYDriver::PopCondition() { | |
653 | yy_pop_state(scanner_); | |
654 | } | |
1771224f JF |
655 | |
656 | #if defined(__clang__) | |
657 | #pragma clang diagnostic pop | |
7c4c728d JF |
658 | #else |
659 | // must not pop -Wunused-function | |
660 | //#pragma GCC diagnostic pop | |
1771224f | 661 | #endif |