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