1 /* Cycript - Optimizing JavaScript Compiler/Runtime
2 * Copyright (C) 2009-2015 Jay Freeman (saurik)
5 /* GNU Affero General Public License, Version 3 {{{ */
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.
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.
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/>.
23 #define YYSTACKEXPANDABLE 1
30 #define CYNew new(driver.pool_)
33 #include "ObjectiveC/Syntax.hpp"
37 #include "E4X/Syntax.hpp"
40 #include "Highlight.hpp"
43 %union { bool bool_; }
45 %union { CYMember *access_; }
46 %union { CYArgument *argument_; }
47 %union { CYAssignment *assignment_; }
48 %union { CYBoolean *boolean_; }
49 %union { CYClause *clause_; }
50 %union { cy::Syntax::Catch *catch_; }
51 %union { CYClassTail *classTail_; }
52 %union { CYComprehension *comprehension_; }
53 %union { CYDeclaration *declaration_; }
54 %union { CYDeclarations *declarations_; }
55 %union { CYElement *element_; }
56 %union { CYExpression *expression_; }
57 %union { CYFalse *false_; }
58 %union { CYVariable *variable_; }
59 %union { CYFinally *finally_; }
60 %union { CYForInitializer *for_; }
61 %union { CYForInInitializer *forin_; }
62 %union { CYFunctionParameter *functionParameter_; }
63 %union { CYIdentifier *identifier_; }
64 %union { CYInfix *infix_; }
65 %union { CYLiteral *literal_; }
66 %union { CYMethod *method_; }
67 %union { CYModule *module_; }
68 %union { CYNull *null_; }
69 %union { CYNumber *number_; }
70 %union { CYParenthetical *parenthetical_; }
71 %union { CYProperty *property_; }
72 %union { CYPropertyName *propertyName_; }
73 %union { CYRubyProc *rubyProc_; }
74 %union { CYSpan *span_; }
75 %union { CYStatement *statement_; }
76 %union { CYString *string_; }
77 %union { CYTarget *target_; }
78 %union { CYThis *this_; }
79 %union { CYTrue *true_; }
80 %union { CYWord *word_; }
83 %union { CYTypeModifier *modifier_; }
84 %union { CYTypeSpecifier *specifier_; }
85 %union { CYTypedIdentifier *typedIdentifier_; }
86 %union { CYTypedParameter *typedParameter_; }
90 %union { CYMessage *message_; }
91 %union { CYMessageParameter *messageParameter_; }
92 %union { CYImplementationField *implementationField_; }
93 %union { CYProtocol *protocol_; }
94 %union { CYSelectorPart *selector_; }
98 %union { CYAttribute *attribute_; }
99 %union { CYPropertyIdentifier *propertyIdentifier_; }
100 %union { CYSelector *selector_; }
106 cy::parser::semantic_type semantic_;
107 hi::Value highlight_;
110 int cylex(YYSTYPE *, CYLocation *, void *);
117 _finline int yylex(cy::parser::semantic_type *semantic, CYLocation *location, CYDriver &driver) {
118 if (driver.mark_ == CYMarkIgnore);
119 else if (driver.mark_ == CYMarkScript) {
120 driver.mark_ = CYMarkIgnore;
121 return cy::parser::token::MarkScript;
122 } else if (driver.mark_ == CYMarkModule) {
123 driver.mark_ = CYMarkIgnore;
124 return cy::parser::token::MarkModule;
128 int token(cylex(&data, location, driver.scanner_));
129 *semantic = data.semantic_;
133 #define CYLEX() do if (yyla.empty()) { \
134 YYCDEBUG << "Mapping a token: "; \
135 yyla.type = yytranslate_(yylex(&yyla.value, &yyla.location, driver)); \
136 YY_SYMBOL_PRINT("Next token is", yyla); \
139 #define CYMAP(to, from) do { \
141 if (yyla.type == yytranslate_(token::from)) \
142 yyla.type = yytranslate_(token::to); \
145 #define CYERR(location, message) do { \
146 error(location, message); \
150 #define CYNOT(location) \
151 CYERR(location, "unimplemented feature")
160 @$.begin.filename = @$.end.filename = &driver.filename_;
166 %define api.location.type { CYLocation }
173 %param { CYDriver &driver }
175 /* Token Declarations {{{ */
181 %token XMLAttributeValue
183 %token XMLTagCharacters
189 %token LeftRight "<>"
190 %token LeftSlashRight "</>"
192 %token SlashRight "/>"
193 %token LeftSlash "</"
195 %token ColonColon "::"
196 %token PeriodPeriod ".."
199 @begin E4X ObjectiveC
205 %token AmpersandAmpersand "&&"
206 %token AmpersandEqual "&="
208 %token CarrotEqual "^="
210 %token EqualEqual "=="
211 %token EqualEqualEqual "==="
212 %token EqualRight "=>"
213 %token EqualRight_ "\n=>"
214 %token Exclamation "!"
215 %token ExclamationEqual "!="
216 %token ExclamationEqualEqual "!=="
218 %token HyphenEqual "-="
219 %token HyphenHyphen "--"
220 %token HyphenHyphen_ "\n--"
221 %token HyphenRight "->"
223 %token LeftEqual "<="
225 %token LeftLeftEqual "<<="
227 %token PercentEqual "%="
229 %token PeriodPeriodPeriod "..."
231 %token PipeEqual "|="
234 %token PlusEqual "+="
236 %token PlusPlus_ "\n++"
238 %token RightEqual ">="
239 %token RightRight ">>"
240 %token RightRightEqual ">>="
241 %token RightRightRight ">>>"
242 %token RightRightRightEqual ">>>="
244 %token SlashEqual "/="
246 %token StarEqual "*="
258 %token CloseParen ")"
261 %token OpenBrace_ "\n{"
262 %token OpenBrace__ ";{"
263 %token CloseBrace "}"
265 %token OpenBracket "["
266 %token CloseBracket "]"
268 %token At_error_ "@error"
271 %token At_class_ "@class"
275 %token _typedef_ "typedef"
276 %token _unsigned_ "unsigned"
277 %token _signed_ "signed"
278 %token _extern_ "extern"
282 %token At_encode_ "@encode"
286 %token At_implementation_ "@implementation"
287 %token At_import_ "@import"
288 %token At_end_ "@end"
289 %token At_selector_ "@selector"
290 %token At_null_ "@null"
291 %token At_YES_ "@YES"
293 %token At_true_ "@true"
294 %token At_false_ "@false"
299 %token _false_ "false"
303 %token _break_ "break"
305 %token _catch_ "catch"
306 %token _class_ "class"
307 %token _class__ ";class"
308 %token _const_ "const"
309 %token _continue_ "continue"
310 %token _debugger_ "debugger"
311 %token _default_ "default"
312 %token _delete_ "delete"
316 %token _export_ "export"
317 %token _extends_ "extends"
318 %token _finally_ "finally"
320 %token _function_ "function"
321 %token _function__ ";function"
323 %token _import_ "import"
326 %token _Infinity_ "Infinity"
327 %token _instanceof_ "instanceof"
329 %token _return_ "return"
330 %token _return__ "!return"
331 %token _super_ "super"
332 %token _switch_ "switch"
333 %token _target_ "target"
335 %token _throw_ "throw"
337 %token _typeof_ "typeof"
340 %token _while_ "while"
343 %token _abstract_ "abstract"
344 %token _await_ "await"
345 %token _boolean_ "boolean"
348 %token _constructor_ "constructor"
349 %token _double_ "double"
351 %token _final_ "final"
352 %token _float_ "float"
356 %token _implements_ "implements"
358 %token _interface_ "interface"
361 %token _native_ "native"
362 %token _package_ "package"
363 %token _private_ "private"
364 %token _protected_ "protected"
365 %token _prototype_ "prototype"
366 %token _public_ "public"
368 %token _short_ "short"
369 %token _static_ "static"
370 %token _synchronized_ "synchronized"
371 %token _throws_ "throws"
372 %token _transient_ "transient"
373 %token _volatile_ "volatile"
374 %token _yield_ "yield"
375 %token _yield__ "!yield"
377 %token _undefined_ "undefined"
393 %token _namespace_ "namespace"
400 %token <identifier_> Identifier_
401 %token <number_> NumericLiteral
402 %token <string_> StringLiteral
403 %token <literal_> RegularExpressionLiteral
405 %token <string_> NoSubstitutionTemplate
406 %token <string_> TemplateHead
407 %token <string_> TemplateMiddle
408 %token <string_> TemplateTail
410 %type <expression_> AdditiveExpression
411 %type <argument_> ArgumentList_
412 %type <argument_> ArgumentList
413 %type <argument_> ArgumentListOpt
414 %type <argument_> Arguments
415 %type <target_> ArrayComprehension
416 %type <literal_> ArrayLiteral
417 %type <expression_> ArrowFunction
418 %type <functionParameter_> ArrowParameters
419 %type <expression_> AssignmentExpression
420 %type <expression_> AssignmentExpressionOpt
421 %type <identifier_> BindingIdentifier
422 %type <identifier_> BindingIdentifierOpt
423 %type <declarations_> BindingList_
424 %type <declarations_> BindingList
425 %type <expression_> BitwiseANDExpression
426 %type <statement_> Block
427 %type <statement_> BlockStatement
428 %type <boolean_> BooleanLiteral
429 %type <declaration_> BindingElement
430 %type <expression_> BitwiseORExpression
431 %type <expression_> BitwiseXORExpression
432 %type <statement_> BreakStatement
433 %type <statement_> BreakableStatement
434 %type <expression_> CallExpression_
435 %type <target_> CallExpression
436 %type <clause_> CaseBlock
437 %type <clause_> CaseClause
438 %type <clause_> CaseClausesOpt
440 %type <identifier_> CatchParameter
441 %type <statement_> ClassDeclaration
442 %type <target_> ClassExpression
443 %type <classTail_> ClassHeritage
444 %type <classTail_> ClassHeritageOpt
445 %type <classTail_> ClassTail
446 %type <target_> Comprehension
447 %type <comprehension_> ComprehensionFor
448 %type <comprehension_> ComprehensionIf
449 %type <comprehension_> ComprehensionTail
450 %type <propertyName_> ComputedPropertyName
451 %type <expression_> ConditionalExpression
452 %type <statement_> ContinueStatement
453 %type <statement_> ConciseBody
454 %type <parenthetical_> CoverParenthesizedExpressionAndArrowParameterList
455 %type <statement_> DebuggerStatement
456 %type <statement_> Declaration__
457 %type <statement_> Declaration_
458 %type <statement_> Declaration
459 %type <clause_> DefaultClause
460 %type <element_> ElementList
461 %type <element_> ElementListOpt
462 %type <statement_> ElseStatementOpt
463 %type <for_> EmptyStatement
464 %type <expression_> EqualityExpression
465 %type <expression_> Expression
466 %type <expression_> ExpressionOpt
467 %type <for_> ExpressionStatement_
468 %type <statement_> ExpressionStatement
469 %type <finally_> Finally
470 %type <declaration_> ForBinding
471 %type <forin_> ForDeclaration
472 %type <forin_> ForInStatementInitializer
473 %type <for_> ForStatementInitializer
474 %type <declaration_> FormalParameter
475 %type <functionParameter_> FormalParameterList_
476 %type <functionParameter_> FormalParameterList
477 %type <functionParameter_> FormalParameters
478 %type <statement_> FunctionBody
479 %type <statement_> FunctionDeclaration
480 %type <target_> FunctionExpression
481 %type <statement_> FunctionStatementList
482 %type <statement_> GeneratorBody
483 %type <statement_> GeneratorDeclaration
484 %type <target_> GeneratorExpression
485 %type <method_> GeneratorMethod
486 %type <statement_> HoistableDeclaration
487 %type <identifier_> Identifier
488 %type <identifier_> IdentifierType
489 %type <word_> IdentifierName
490 %type <variable_> IdentifierReference
491 %type <statement_> IfStatement
492 %type <expression_> Initializer
493 %type <expression_> InitializerOpt
494 %type <statement_> IterationStatement
495 %type <identifier_> LabelIdentifier
496 %type <statement_> LabelledItem
497 %type <statement_> LabelledStatement
498 %type <assignment_> LeftHandSideAssignment
499 %type <target_> LeftHandSideExpression
500 %type <bool_> LetOrConst
501 %type <declaration_> LexicalBinding
502 %type <for_> LexicalDeclaration_
503 %type <statement_> LexicalDeclaration
504 %type <literal_> Literal
505 %type <propertyName_> LiteralPropertyName
506 %type <expression_> LogicalANDExpression
507 %type <expression_> LogicalORExpression
508 %type <access_> MemberAccess
509 %type <target_> MemberExpression
510 %type <method_> MethodDefinition
511 %type <module_> ModulePath
512 %type <expression_> MultiplicativeExpression
513 %type <target_> NewExpression
514 %type <null_> NullLiteral
515 %type <literal_> ObjectLiteral
516 %type <expression_> PostfixExpression
517 %type <target_> PrimaryExpression
518 %type <propertyName_> PropertyName
519 %type <property_> PropertyDefinition
520 %type <property_> PropertyDefinitionList_
521 %type <property_> PropertyDefinitionList
522 %type <property_> PropertyDefinitionListOpt
523 %type <declaration_> PropertySetParameterList
524 %type <expression_> RelationalExpression
525 %type <statement_> ReturnStatement
526 %type <rubyProc_> RubyProcExpression
527 %type <functionParameter_> RubyProcParameterList_
528 %type <functionParameter_> RubyProcParameterList
529 %type <functionParameter_> RubyProcParameters
530 %type <functionParameter_> RubyProcParametersOpt
531 %type <statement_> Script
532 %type <statement_> ScriptBody
533 %type <statement_> ScriptBodyOpt
534 %type <expression_> ShiftExpression
535 %type <declaration_> SingleNameBinding
536 %type <statement_> Statement__
537 %type <statement_> Statement_
538 %type <statement_> Statement
539 %type <statement_> StatementList
540 %type <statement_> StatementListOpt
541 %type <statement_> StatementListItem
542 %type <functionParameter_> StrictFormalParameters
543 %type <target_> SuperCall
544 %type <target_> SuperProperty
545 %type <statement_> SwitchStatement
546 %type <target_> TemplateLiteral
547 %type <span_> TemplateSpans
548 %type <statement_> ThrowStatement
549 %type <statement_> TryStatement
550 %type <expression_> UnaryExpression_
551 %type <expression_> UnaryExpression
552 %type <declaration_> VariableDeclaration
553 %type <declarations_> VariableDeclarationList_
554 %type <declarations_> VariableDeclarationList
555 %type <for_> VariableStatement_
556 %type <statement_> VariableStatement
557 %type <statement_> WithStatement
560 %type <word_> WordOpt
562 %type <expression_> YieldExpression
565 %type <specifier_> IntegerType
566 %type <specifier_> IntegerTypeOpt
567 %type <typedIdentifier_> PrefixedType
568 %type <specifier_> PrimitiveType
569 %type <typedIdentifier_> SuffixedType
570 %type <typedIdentifier_> TypeSignifier
571 %type <modifier_> TypeQualifierLeft
572 %type <typedIdentifier_> TypeQualifierRight
573 %type <typedIdentifier_> TypedIdentifier
574 %type <typedParameter_> TypedParameterList_
575 %type <typedParameter_> TypedParameterList
576 %type <typedParameter_> TypedParameterListOpt
580 %type <expression_> AssignmentExpressionClassic
581 %type <expression_> BoxableExpression
582 %type <statement_> CategoryStatement
583 %type <expression_> ClassSuperOpt
584 %type <expression_> ConditionalExpressionClassic
585 %type <implementationField_> ImplementationFieldListOpt
586 %type <implementationField_> ImplementationFields
587 %type <message_> ClassMessageDeclaration
588 %type <message_> ClassMessageDeclarationListOpt
589 %type <protocol_> ClassProtocolListOpt
590 %type <protocol_> ClassProtocols
591 %type <protocol_> ClassProtocolsOpt
592 %type <statement_> ImplementationStatement
593 %type <target_> MessageExpression
594 %type <messageParameter_> MessageParameter
595 %type <messageParameter_> MessageParameters
596 %type <messageParameter_> MessageParameterList
597 %type <messageParameter_> MessageParameterListOpt
598 %type <bool_> MessageScope
599 %type <argument_> SelectorCall_
600 %type <argument_> SelectorCall
601 %type <selector_> SelectorExpression_
602 %type <selector_> SelectorExpression
603 %type <selector_> SelectorExpressionOpt
604 %type <argument_> SelectorList
605 %type <word_> SelectorWordOpt
606 %type <typedIdentifier_> TypeOpt
607 %type <argument_> VariadicCall
611 %type <propertyIdentifier_> PropertyIdentifier_
612 %type <selector_> PropertySelector_
613 %type <selector_> PropertySelector
614 %type <identifier_> QualifiedIdentifier_
615 %type <identifier_> QualifiedIdentifier
616 %type <identifier_> WildcardIdentifier
617 %type <identifier_> XMLComment
618 %type <identifier_> XMLCDATA
619 %type <identifier_> XMLElement
620 %type <identifier_> XMLElementContent
621 %type <identifier_> XMLMarkup
622 %type <identifier_> XMLPI
624 %type <attribute_> AttributeIdentifier
625 /* XXX: %type <statement_> DefaultXMLNamespaceStatement */
626 %type <expression_> PropertyIdentifier
627 %type <expression_> XMLListInitialiser
628 %type <expression_> XMLInitialiser
631 /* Token Priorities {{{ */
650 /* Lexer State {{{ */
651 LexPushInOn: { driver.in_.push(true); };
652 LexPushInOff: { driver.in_.push(false); };
653 LexPopIn: { driver.in_.pop(); };
655 LexPushReturnOn: { driver.return_.push(true); };
656 LexPopReturn: { driver.return_.pop(); };
658 LexPushSuperOn: { driver.super_.push(true); };
659 LexPushSuperOff: { driver.super_.push(false); };
660 LexPopSuper: { driver.super_.pop(); };
662 LexPushYieldOn: { driver.yield_.push(true); };
663 LexPushYieldOff: { driver.yield_.push(false); };
664 LexPopYield: { driver.yield_.pop(); };
667 : { CYLEX(); if (yyla.type == yytranslate_(token::Slash)) { yyla.clear(); driver.SetRegEx(false); } else if (yyla.type == yytranslate_(token::SlashEqual)) { yyla.clear(); driver.SetRegEx(true); } }
671 : { if (!yyla.empty() && yyla.type_get() != yyeof_) CYERR(@$, "unexpected lookahead"); driver.next_ = true; }
675 : { CYMAP(YieldStar, Star); }
679 : { CYMAP(OpenBrace__, OpenBrace); CYMAP(OpenBrace__, OpenBrace_); }
683 : { CYMAP(_class__, _class_); }
687 : { CYMAP(_function__, _function_); }
691 : LexNoBrace LexNoClass LexNoFunction
694 /* Virtual Tokens {{{ */
705 /* 11.6 Names and Keywords {{{ */
708 | "for" { $$ = CYNew CYWord("for"); }
709 | "in" { $$ = CYNew CYWord("in"); }
710 | "instanceof" { $$ = CYNew CYWord("instanceof"); }
719 : Identifier { $$ = $1; }
720 | "auto" { $$ = CYNew CYWord("auto"); }
721 | "break" { $$ = CYNew CYWord("break"); }
722 | "case" { $$ = CYNew CYWord("case"); }
723 | "catch" { $$ = CYNew CYWord("catch"); }
724 | "class" { $$ = CYNew CYWord("class"); }
725 | ";class" { $$ = CYNew CYWord("class"); }
726 | "const" { $$ = CYNew CYWord("const"); }
727 | "continue" { $$ = CYNew CYWord("continue"); }
728 | "debugger" { $$ = CYNew CYWord("debugger"); }
729 | "default" { $$ = CYNew CYWord("default"); }
730 | "delete" LexSetRegExp { $$ = CYNew CYWord("delete"); }
731 | "do" { $$ = CYNew CYWord("do"); }
732 | "else" { $$ = CYNew CYWord("else"); }
733 | "enum" { $$ = CYNew CYWord("enum"); }
734 | "export" { $$ = CYNew CYWord("export"); }
735 | "extends" { $$ = CYNew CYWord("extends"); }
736 | "false" { $$ = CYNew CYWord("false"); }
737 | "finally" { $$ = CYNew CYWord("finally"); }
738 | "function" { $$ = CYNew CYWord("function"); }
739 | "if" { $$ = CYNew CYWord("if"); }
740 | "import" { $$ = CYNew CYWord("import"); }
741 | "!in" { $$ = CYNew CYWord("in"); }
742 | "new" LexSetRegExp { $$ = CYNew CYWord("new"); }
743 | "null" { $$ = CYNew CYWord("null"); }
744 | "return" { $$ = CYNew CYWord("return"); }
745 | "!return" { $$ = CYNew CYWord("return"); }
746 | "super" { $$ = CYNew CYWord("super"); }
747 | "switch" { $$ = CYNew CYWord("switch"); }
748 | "this" { $$ = CYNew CYWord("this"); }
749 | "throw" { $$ = CYNew CYWord("throw"); }
750 | "true" { $$ = CYNew CYWord("true"); }
751 | "try" { $$ = CYNew CYWord("try"); }
752 | "typeof" LexSetRegExp { $$ = CYNew CYWord("typeof"); }
753 | "var" { $$ = CYNew CYWord("var"); }
754 | "void" LexSetRegExp { $$ = CYNew CYWord("void"); }
755 | "while" { $$ = CYNew CYWord("while"); }
756 | "with" { $$ = CYNew CYWord("with"); }
757 | "yield" { $$ = CYNew CYIdentifier("yield"); }
759 | Yield LexSetRegExp NewLineOpt { $$ = CYNew CYIdentifier("yield"); }
761 // XXX: should be Identifier
762 | "let" { $$ = CYNew CYIdentifier("let"); }
772 /* 11.8.1 Null Literals {{{ */
774 : "null" { $$ = CYNew CYNull(); }
777 /* 11.8.2 Boolean Literals {{{ */
779 : "true" { $$ = CYNew CYTrue(); }
780 | "false" { $$ = CYNew CYFalse(); }
784 /* 11.9 Automatic Semicolon Insertion {{{ */
786 : { driver.Warning(@$, "warning, automatic semi-colon insertion required"); }
796 | error { if (yyla.type_get() != yyeof_ && yyla.type != yytranslate_(token::CloseBrace) && !driver.newline_) { CYERR(@1, "required semi-colon"); } else { yyerrok; driver.errors_.pop_back(); } } StrictSemi
801 | error { yyerrok; driver.errors_.pop_back(); } StrictSemi
805 /* 12.1 Identifiers {{{ */
807 : Identifier { $$ = CYNew CYVariable($1); }
808 | "yield" { $$ = CYNew CYVariable(CYNew CYIdentifier("yield")); }
812 : Identifier { $$ = $1; }
813 | "yield" { $$ = CYNew CYIdentifier("yield"); }
817 : BindingIdentifier { $$ = $1; }
822 : Identifier { $$ = $1; }
823 | "yield" { $$ = CYNew CYIdentifier("yield"); }
827 : Identifier_ { $$ = $1; }
828 | "abstract" { $$ = CYNew CYIdentifier("abstract"); }
829 | "await" { $$ = CYNew CYIdentifier("await"); }
830 | "boolean" { $$ = CYNew CYIdentifier("boolean"); }
831 | "byte" { $$ = CYNew CYIdentifier("byte"); }
832 | "constructor" { $$ = CYNew CYIdentifier("constructor"); }
833 | "double" { $$ = CYNew CYIdentifier("double"); }
834 | "each" { $$ = CYNew CYIdentifier("each"); }
835 | "eval" { $$ = CYNew CYIdentifier("eval"); }
836 | "final" { $$ = CYNew CYIdentifier("final"); }
837 | "float" { $$ = CYNew CYIdentifier("float"); }
838 | "from" { $$ = CYNew CYIdentifier("from"); }
839 | "get" { $$ = CYNew CYIdentifier("get"); }
840 | "goto" { $$ = CYNew CYIdentifier("goto"); }
841 | "implements" { $$ = CYNew CYIdentifier("implements"); }
842 | "Infinity" { $$ = CYNew CYIdentifier("Infinity"); }
843 | "interface" { $$ = CYNew CYIdentifier("interface"); }
844 | "native" { $$ = CYNew CYIdentifier("native"); }
845 | "of" { $$ = CYNew CYIdentifier("of"); }
846 | "package" { $$ = CYNew CYIdentifier("package"); }
847 | "private" { $$ = CYNew CYIdentifier("private"); }
848 | "protected" { $$ = CYNew CYIdentifier("protected"); }
849 | "prototype" { $$ = CYNew CYIdentifier("prototype"); }
850 | "public" { $$ = CYNew CYIdentifier("public"); }
851 | "set" { $$ = CYNew CYIdentifier("set"); }
852 | "synchronized" { $$ = CYNew CYIdentifier("synchronized"); }
853 | "target" { $$ = CYNew CYIdentifier("target"); }
854 | "throws" { $$ = CYNew CYIdentifier("throws"); }
855 | "transient" { $$ = CYNew CYIdentifier("transient"); }
856 | "undefined" { $$ = CYNew CYIdentifier("undefined"); }
858 | "bool" { $$ = CYNew CYIdentifier("bool"); }
859 | "BOOL" { $$ = CYNew CYIdentifier("BOOL"); }
860 | "id" { $$ = CYNew CYIdentifier("id"); }
861 | "SEL" { $$ = CYNew CYIdentifier("SEL"); }
867 | "char" { $$ = CYNew CYIdentifier("char"); }
868 | "int" { $$ = CYNew CYIdentifier("int"); }
869 | "long" { $$ = CYNew CYIdentifier("long"); }
870 | "short" { $$ = CYNew CYIdentifier("short"); }
871 | "static" { $$ = CYNew CYIdentifier("static"); }
872 | "volatile" { $$ = CYNew CYIdentifier("volatile"); }
874 | "extern" { $$ = CYNew CYIdentifier("extern"); }
875 | "signed" { $$ = CYNew CYIdentifier("signed"); }
876 | "typedef" { $$ = CYNew CYIdentifier("typedef"); }
877 | "unsigned" { $$ = CYNew CYIdentifier("unsigned"); }
880 | "nil" { $$ = CYNew CYIdentifier("nil"); }
881 | "NO" { $$ = CYNew CYIdentifier("NO"); }
882 | "NULL" { $$ = CYNew CYIdentifier("NULL"); }
883 | "YES" { $$ = CYNew CYIdentifier("YES"); }
887 /* 12.2 Primary Expression {{{ */
889 : "this" { $$ = CYNew CYThis(); }
890 | IdentifierReference { $$ = $1; }
891 | Literal { $$ = $1; }
892 | ArrayLiteral { $$ = $1; }
893 | ObjectLiteral { $$ = $1; }
894 | FunctionExpression { $$ = $1; }
895 | ClassExpression { $$ = $1; }
896 | GeneratorExpression { $$ = $1; }
897 | RegularExpressionLiteral { $$ = $1; }
898 | TemplateLiteral { $$ = $1; }
899 | CoverParenthesizedExpressionAndArrowParameterList { if ($1 == NULL) CYERR(@1, "invalid parenthetical"); $$ = $1; }
900 | AutoComplete { driver.mode_ = CYDriver::AutoPrimary; YYACCEPT; }
903 CoverParenthesizedExpressionAndArrowParameterList
904 : "(" LexPushInOff Expression ")" LexPopIn { $$ = CYNew CYParenthetical($3); }
905 | "(" LexPushInOff LexSetRegExp ")" LexPopIn { $$ = NULL; }
906 | "(" LexPushInOff LexSetRegExp "..." BindingIdentifier ")" LexPopIn { CYNOT(@$); }
907 | "(" LexPushInOff Expression "," LexSetRegExp "..." BindingIdentifier ")" LexPopIn { CYNOT(@$); }
910 /* 12.2.4 Literals {{{ */
912 : NullLiteral { $$ = $1; }
913 | BooleanLiteral { $$ = $1; }
914 | NumericLiteral { $$ = $1; }
915 | StringLiteral { $$ = $1; }
918 /* 12.2.5 Array Initializer {{{ */
920 : "[" LexPushInOff ElementListOpt "]" LexPopIn { $$ = CYNew CYArray($3); }
924 : AssignmentExpressionOpt "," ElementListOpt { $$ = CYNew CYElementValue($1, $3); }
925 | LexSetRegExp "..." AssignmentExpression { $$ = CYNew CYElementSpread($3); }
926 | AssignmentExpression { $$ = CYNew CYElementValue($1, NULL); }
930 : ElementList { $$ = $1; }
931 | LexSetRegExp { $$ = NULL; }
934 /* 12.2.6 Object Initializer {{{ */
936 : BRACE LexPushInOff PropertyDefinitionListOpt "}" LexPopIn { $$ = CYNew CYObject($3); }
939 PropertyDefinitionList_
940 : "," PropertyDefinitionListOpt { $$ = $2; }
944 PropertyDefinitionList
945 : PropertyDefinition PropertyDefinitionList_ { $1->SetNext($2); $$ = $1; }
948 PropertyDefinitionListOpt
949 : LexSetRegExp PropertyDefinitionList { $$ = $2; }
950 | LexSetRegExp { $$ = NULL; }
954 : IdentifierReference { $$ = CYNew CYPropertyValue($1->name_, $1); }
955 | CoverInitializedName { CYNOT(@$); }
956 | PropertyName ":" AssignmentExpression { $$ = CYNew CYPropertyValue($1, $3); }
957 | MethodDefinition { $$ = $1; }
961 : LiteralPropertyName { $$ = $1; }
962 | ComputedPropertyName { $$ = $1; }
966 : IdentifierName { $$ = $1; }
967 | StringLiteral { $$ = $1; }
968 | NumericLiteral { $$ = $1; }
972 : "[" AssignmentExpression "]" { $$ = CYNew CYComputed($2); }
976 : IdentifierReference Initializer
980 : "=" AssignmentExpression { $$ = $2; }
984 : Initializer { $$ = $1; }
988 /* 12.2.9 Template Literals {{{ */
990 : NoSubstitutionTemplate { $$ = CYNew CYTemplate($1, NULL); }
991 | TemplateHead TemplateSpans { $$ = CYNew CYTemplate($1, $2); }
995 : Expression TemplateMiddle TemplateSpans { $$ = CYNew CYSpan($1, $2, $3); }
996 | Expression TemplateTail { $$ = CYNew CYSpan($1, $2, NULL); }
1000 /* 12.3 Left-Hand-Side Expressions {{{ */
1002 : "[" LexPushInOff Expression "]" LexPopIn { $$ = CYNew CYDirectMember(NULL, $3); }
1003 | "." IdentifierName { $$ = CYNew CYDirectMember(NULL, CYNew CYString($2)); }
1004 | "." AutoComplete { driver.mode_ = CYDriver::AutoDirect; YYACCEPT; }
1005 | TemplateLiteral { CYNOT(@$); }
1009 : LexSetRegExp PrimaryExpression { $$ = $2; }
1010 | MemberExpression { driver.context_ = $1; } MemberAccess { $3->SetLeft($1); $$ = $3; }
1011 | SuperProperty { $$ = $1; }
1012 | MetaProperty { CYNOT(@$); }
1013 | LexSetRegExp "new" MemberExpression Arguments { $$ = CYNew cy::Syntax::New($3, $4); }
1017 : LexSetRegExp "super" { if (!driver.super_.top()) CYERR(@2, "invalid super"); } "[" Expression "]" { $$ = CYNew CYSuperAccess($5); }
1018 | LexSetRegExp "super" { if (!driver.super_.top()) CYERR(@2, "invalid super"); } "." IdentifierName { $$ = CYNew CYSuperAccess(CYNew CYString($5)); }
1026 : LexSetRegExp "new" LexSetRegExp "." "target"
1030 : MemberExpression { $$ = $1; }
1031 | LexSetRegExp "new" NewExpression { $$ = CYNew cy::Syntax::New($3, NULL); }
1035 : MemberExpression { $$ = $1; }
1036 | CallExpression { $$ = $1; }
1040 : CallExpression_ Arguments { if (!$1->Eval()) $$ = CYNew CYCall($1, $2); else $$ = CYNew CYEval($2); }
1041 | SuperCall { $$ = $1; }
1042 | CallExpression { driver.context_ = $1; } MemberAccess { $3->SetLeft($1); $$ = $3; }
1046 : LexSetRegExp "super" { if (!driver.super_.top()) CYERR(@2, "invalid super"); } Arguments { $$ = CYNew CYSuperCall($4); }
1050 : "(" LexPushInOff ArgumentListOpt ")" LexPopIn { $$ = $3; }
1054 : "," ArgumentList { $$ = $2; }
1059 : AssignmentExpression ArgumentList_ { $$ = CYNew CYArgument(NULL, $1, $2); }
1060 | LexSetRegExp "..." AssignmentExpression { CYNOT(@$); }
1064 : ArgumentList { $$ = $1; }
1065 | LexSetRegExp { $$ = NULL; }
1068 LeftHandSideExpression
1069 : NewExpression { $$ = $1; }
1070 | CallExpression { $$ = $1; }
1073 /* 12.4 Postfix Expressions {{{ */
1075 : %prec "" LeftHandSideExpression { $$ = $1; }
1076 | LeftHandSideExpression "++" { $$ = CYNew CYPostIncrement($1); }
1077 | LeftHandSideExpression "--" { $$ = CYNew CYPostDecrement($1); }
1080 /* 12.5 Unary Operators {{{ */
1082 : "delete" UnaryExpression { $$ = CYNew CYDelete($2); }
1083 | "void" UnaryExpression { $$ = CYNew CYVoid($2); }
1084 | "typeof" UnaryExpression { $$ = CYNew CYTypeOf($2); }
1085 | "++" UnaryExpression { $$ = CYNew CYPreIncrement($2); }
1086 | "\n++" UnaryExpression { $$ = CYNew CYPreIncrement($2); }
1087 | "--" UnaryExpression { $$ = CYNew CYPreDecrement($2); }
1088 | "\n--" UnaryExpression { $$ = CYNew CYPreDecrement($2); }
1089 | "+" UnaryExpression { $$ = CYNew CYAffirm($2); }
1090 | "-" UnaryExpression { $$ = CYNew CYNegate($2); }
1091 | "~" UnaryExpression { $$ = CYNew CYBitwiseNot($2); }
1092 | "!" UnaryExpression { $$ = CYNew CYLogicalNot($2); }
1096 : %prec "" PostfixExpression { $$ = $1; }
1097 | LexSetRegExp UnaryExpression_ { $$ = $2; }
1100 /* 12.6 Multiplicative Operators {{{ */
1101 MultiplicativeExpression
1102 : UnaryExpression { $$ = $1; }
1103 | MultiplicativeExpression "*" UnaryExpression { $$ = CYNew CYMultiply($1, $3); }
1104 | MultiplicativeExpression "/" UnaryExpression { $$ = CYNew CYDivide($1, $3); }
1105 | MultiplicativeExpression "%" UnaryExpression { $$ = CYNew CYModulus($1, $3); }
1108 /* 12.7 Additive Operators {{{ */
1110 : MultiplicativeExpression { $$ = $1; }
1111 | AdditiveExpression "+" MultiplicativeExpression { $$ = CYNew CYAdd($1, $3); }
1112 | AdditiveExpression "-" MultiplicativeExpression { $$ = CYNew CYSubtract($1, $3); }
1115 /* 12.8 Bitwise Shift Operators {{{ */
1117 : AdditiveExpression { $$ = $1; }
1118 | ShiftExpression "<<" AdditiveExpression { $$ = CYNew CYShiftLeft($1, $3); }
1119 | ShiftExpression ">>" AdditiveExpression { $$ = CYNew CYShiftRightSigned($1, $3); }
1120 | ShiftExpression ">>>" AdditiveExpression { $$ = CYNew CYShiftRightUnsigned($1, $3); }
1123 /* 12.9 Relational Operators {{{ */
1124 RelationalExpression
1125 : ShiftExpression { $$ = $1; }
1126 | RelationalExpression "<" ShiftExpression { $$ = CYNew CYLess($1, $3); }
1127 | RelationalExpression ">" ShiftExpression { $$ = CYNew CYGreater($1, $3); }
1128 | RelationalExpression "<=" ShiftExpression { $$ = CYNew CYLessOrEqual($1, $3); }
1129 | RelationalExpression ">=" ShiftExpression { $$ = CYNew CYGreaterOrEqual($1, $3); }
1130 | RelationalExpression "instanceof" ShiftExpression { $$ = CYNew CYInstanceOf($1, $3); }
1131 | RelationalExpression "in" ShiftExpression { $$ = CYNew CYIn($1, $3); }
1134 /* 12.10 Equality Operators {{{ */
1136 : RelationalExpression { $$ = $1; }
1137 | EqualityExpression "==" RelationalExpression { $$ = CYNew CYEqual($1, $3); }
1138 | EqualityExpression "!=" RelationalExpression { $$ = CYNew CYNotEqual($1, $3); }
1139 | EqualityExpression "===" RelationalExpression { $$ = CYNew CYIdentical($1, $3); }
1140 | EqualityExpression "!==" RelationalExpression { $$ = CYNew CYNotIdentical($1, $3); }
1143 /* 12.11 Binary Bitwise Operators {{{ */
1144 BitwiseANDExpression
1145 : EqualityExpression { $$ = $1; }
1146 | BitwiseANDExpression "&" EqualityExpression { $$ = CYNew CYBitwiseAnd($1, $3); }
1149 BitwiseXORExpression
1150 : BitwiseANDExpression { $$ = $1; }
1151 | BitwiseXORExpression "^" BitwiseANDExpression { $$ = CYNew CYBitwiseXOr($1, $3); }
1155 : BitwiseXORExpression { $$ = $1; }
1156 | BitwiseORExpression "|" BitwiseXORExpression { $$ = CYNew CYBitwiseOr($1, $3); }
1159 /* 12.12 Binary Logical Operators {{{ */
1160 LogicalANDExpression
1161 : BitwiseORExpression { $$ = $1; }
1162 | LogicalANDExpression "&&" BitwiseORExpression { $$ = CYNew CYLogicalAnd($1, $3); }
1166 : LogicalANDExpression { $$ = $1; }
1167 | LogicalORExpression "||" LogicalANDExpression { $$ = CYNew CYLogicalOr($1, $3); }
1170 /* 12.13 Conditional Operator ( ? : ) {{{ */
1172 ConditionalExpressionClassic
1173 : LogicalORExpression { $$ = $1; }
1174 | LogicalORExpression "?" LexPushInOff AssignmentExpression ":" LexPopIn AssignmentExpressionClassic { $$ = CYNew CYCondition($1, $4, $7); }
1178 ConditionalExpression
1179 : LogicalORExpression { $$ = $1; }
1180 | LogicalORExpression "?" LexPushInOff AssignmentExpression ":" LexPopIn AssignmentExpression { $$ = CYNew CYCondition($1, $4, $7); }
1183 /* 12.14 Assignment Operators {{{ */
1184 LeftHandSideAssignment
1185 : LeftHandSideExpression "=" { $$ = CYNew CYAssign($1, NULL); }
1186 | LeftHandSideExpression "*=" { $$ = CYNew CYMultiplyAssign($1, NULL); }
1187 | LeftHandSideExpression "/=" { $$ = CYNew CYDivideAssign($1, NULL); }
1188 | LeftHandSideExpression "%=" { $$ = CYNew CYModulusAssign($1, NULL); }
1189 | LeftHandSideExpression "+=" { $$ = CYNew CYAddAssign($1, NULL); }
1190 | LeftHandSideExpression "-=" { $$ = CYNew CYSubtractAssign($1, NULL); }
1191 | LeftHandSideExpression "<<=" { $$ = CYNew CYShiftLeftAssign($1, NULL); }
1192 | LeftHandSideExpression ">>=" { $$ = CYNew CYShiftRightSignedAssign($1, NULL); }
1193 | LeftHandSideExpression ">>>=" { $$ = CYNew CYShiftRightUnsignedAssign($1, NULL); }
1194 | LeftHandSideExpression "&=" { $$ = CYNew CYBitwiseAndAssign($1, NULL); }
1195 | LeftHandSideExpression "^=" { $$ = CYNew CYBitwiseXOrAssign($1, NULL); }
1196 | LeftHandSideExpression "|=" { $$ = CYNew CYBitwiseOrAssign($1, NULL); }
1200 AssignmentExpressionClassic
1201 : ConditionalExpressionClassic { $$ = $1; }
1202 | LeftHandSideAssignment AssignmentExpressionClassic { $1->SetRight($2); $$ = $1; }
1206 AssignmentExpression
1207 : ConditionalExpression { $$ = $1; }
1208 | LexSetRegExp YieldExpression { $$ = $2; }
1209 | ArrowFunction { $$ = $1; }
1210 | LeftHandSideAssignment AssignmentExpression { $1->SetRight($2); $$ = $1; }
1213 AssignmentExpressionOpt
1214 : AssignmentExpression { $$ = $1; }
1215 | LexSetRegExp { $$ = NULL; }
1218 /* 12.15 Comma Operator ( , ) {{{ */
1220 : AssignmentExpression { $$ = $1; }
1221 | Expression "," AssignmentExpression { $$ = CYNew CYCompound($1, $3); }
1225 : Expression { $$ = $1; }
1226 | LexSetRegExp { $$ = NULL; }
1230 /* 13 Statements and Declarations {{{ */
1232 : BlockStatement { $$ = $1; }
1233 | VariableStatement { $$ = $1; }
1234 | EmptyStatement { $$ = $1; }
1235 | IfStatement { $$ = $1; }
1236 | BreakableStatement { $$ = $1; }
1237 | ContinueStatement { $$ = $1; }
1238 | BreakStatement { $$ = $1; }
1239 | ReturnStatement { $$ = $1; }
1240 | WithStatement { $$ = $1; }
1241 | LabelledStatement { $$ = $1; }
1242 | ThrowStatement { $$ = $1; }
1243 | TryStatement { $$ = $1; }
1244 | DebuggerStatement { $$ = $1; }
1248 : LexSetRegExp Statement__ { $$ = $2; }
1249 | ExpressionStatement { $$ = $1; }
1253 : LexSetStatement Statement_ { $$ = $2; }
1257 : HoistableDeclaration { $$ = $1; }
1258 | ClassDeclaration { $$ = $1; }
1259 | LexicalDeclaration { $$ = $1; }
1263 : LexSetRegExp Declaration__ { $$ = $2; }
1267 : LexSetStatement Declaration_ { $$ = $2; }
1270 HoistableDeclaration
1271 : FunctionDeclaration { $$ = $1; }
1272 | GeneratorDeclaration { $$ = $1; }
1276 : IterationStatement { $$ = $1; }
1277 | SwitchStatement { $$ = $1; }
1280 /* 13.2 Block {{{ */
1282 : ";{" StatementListOpt "}" { $$ = CYNew CYBlock($2); }
1286 : BRACE StatementListOpt "}" { $$ = $2; }
1290 : StatementListItem StatementListOpt { $1->SetNext($2); $$ = $1; }
1294 : StatementList { $$ = $1; }
1295 | LexSetStatement LexSetRegExp { $$ = NULL; }
1299 : Statement { $$ = $1; }
1300 | Declaration { $$ = $1; }
1303 /* 13.3 Let and Const Declarations {{{ */
1305 : LetOrConst BindingList { $$ = CYNew CYLet($1, $2); }
1309 : LexicalDeclaration_ Terminator { $$ = $1; }
1313 : "let" { $$ = false; }
1314 | "const" { $$ = true; }
1318 : "," BindingList { $$ = $2; }
1323 : LexicalBinding BindingList_ { $$ = CYNew CYDeclarations($1, $2); }
1327 : BindingIdentifier InitializerOpt { $$ = CYNew CYDeclaration($1, $2); }
1328 | BindingPattern Initializer { CYNOT(@1); }
1331 /* 13.3.2 Variable Statement {{{ */
1333 : Var_ VariableDeclarationList { $$ = CYNew CYVar($2); }
1337 : VariableStatement_ Terminator { $$ = $1; }
1340 VariableDeclarationList_
1341 : "," VariableDeclarationList { $$ = $2; }
1345 VariableDeclarationList
1346 : VariableDeclaration VariableDeclarationList_ { $$ = CYNew CYDeclarations($1, $2); }
1350 : BindingIdentifier InitializerOpt { $$ = CYNew CYDeclaration($1, $2); }
1351 | BindingPattern Initializer { CYNOT(@1); }
1354 /* 13.3.3 Destructuring Binding Patterns {{{ */
1356 : ObjectBindingPattern
1357 | ArrayBindingPattern
1360 ObjectBindingPattern
1361 : BRACE BindingPropertyListOpt "}"
1365 : "[" { CYNOT(@$); }
1368 BindingPropertyList_
1369 : "," BindingPropertyListOpt
1374 : BindingProperty BindingPropertyList_
1377 BindingPropertyListOpt
1378 : BindingPropertyList
1384 | PropertyName ":" BindingElement
1388 : SingleNameBinding { $$ = $1; }
1389 | BindingPattern InitializerOpt { CYNOT(@$); }
1393 : BindingIdentifier InitializerOpt { $$ = CYNew CYDeclaration($1, $2); }
1397 : "..." BindingIdentifier
1400 /* 13.4 Empty Statement {{{ */
1402 : ";" { $$ = CYNew CYEmpty(); }
1405 /* 13.5 Expression Statement {{{ */
1406 ExpressionStatement_
1407 : Expression { $$ = CYNew CYExpress($1); }
1410 : ExpressionStatement_ Terminator { $$ = $1; }
1413 /* 13.6 The if Statement {{{ */
1415 : "else" Statement { $$ = $2; }
1416 | %prec "if" { $$ = NULL; }
1420 : "if" "(" Expression ")" Statement ElseStatementOpt { $$ = CYNew CYIf($3, $5, $6); }
1423 /* 13.7 Iteration Statements {{{ */
1425 : "do" Statement "while" "(" Expression ")" TerminatorOpt { $$ = CYNew CYDoWhile($5, $2); }
1426 | "while" "(" Expression ")" Statement { $$ = CYNew CYWhile($3, $5); }
1427 | "for" "(" LexPushInOn ForStatementInitializer LexPopIn ExpressionOpt ";" ExpressionOpt ")" Statement { $$ = CYNew CYFor($4, $6, $8, $10); }
1428 | "for" "(" LexPushInOn LexSetRegExp Var_ BindingIdentifier Initializer "!in" LexPopIn Expression ")" Statement { $$ = CYNew CYForInitialized(CYNew CYDeclaration($6, $7), $10, $12); }
1429 | "for" "(" LexPushInOn ForInStatementInitializer "!in" LexPopIn Expression ")" Statement { $$ = CYNew CYForIn($4, $7, $9); }
1430 | "for" "(" LexPushInOn ForInStatementInitializer "of" LexPopIn AssignmentExpression ")" Statement { $$ = CYNew CYForOf($4, $7, $9); }
1433 ForStatementInitializer
1434 : LexSetRegExp EmptyStatement { $$ = $2; }
1435 | ExpressionStatement_ ";" { $$ = $1; }
1436 | LexSetRegExp VariableStatement_ ";" { $$ = $2; }
1437 | LexSetRegExp LexicalDeclaration_ ";" { $$ = $2; }
1440 ForInStatementInitializer
1441 : LeftHandSideExpression { $$ = $1; }
1442 | LexSetRegExp Var_ ForBinding { $$ = CYNew CYForVariable($3); }
1443 | LexSetRegExp ForDeclaration { $$ = $2; }
1447 : LetOrConst ForBinding { $$ = CYNew CYForLexical($1, $2); }
1451 : BindingIdentifier { $$ = CYNew CYDeclaration($1, NULL); }
1452 | BindingPattern { CYNOT(@1); }
1455 /* 13.8 The continue Statement {{{ */
1457 : "continue" LexNewLine
1461 : Continue TerminatorSoft { $$ = CYNew CYContinue(NULL); }
1462 | Continue Identifier Terminator { $$ = CYNew CYContinue($2); }
1465 /* 13.9 The break Statement {{{ */
1467 : "break" LexNewLine
1471 : Break TerminatorSoft { $$ = CYNew CYBreak(NULL); }
1472 | Break Identifier Terminator { $$ = CYNew CYBreak($2); }
1475 /* 13.10 The return Statement {{{ */
1477 : "!return" LexNewLine
1481 : Return LexSetRegExp TerminatorSoft { $$ = CYNew CYReturn(NULL); }
1482 | Return Expression Terminator { $$ = CYNew CYReturn($2); }
1485 /* 13.11 The with Statement {{{ */
1487 : "with" "(" Expression ")" Statement { $$ = CYNew CYWith($3, $5); }
1490 /* 13.12 The switch Statement {{{ */
1492 : "switch" "(" Expression ")" CaseBlock { $$ = CYNew CYSwitch($3, $5); }
1496 : BRACE CaseClausesOpt "}" { $$ = $2; }
1500 : "case" Expression ":" StatementListOpt { $$ = CYNew CYClause($2, $4); }
1504 : CaseClause CaseClausesOpt { $1->SetNext($2); $$ = $1; }
1505 | DefaultClause CaseClausesOpt { $1->SetNext($2); $$ = $1; }
1509 // XXX: the standard makes certain you can only have one of these
1511 : "default" ":" StatementListOpt { $$ = CYNew CYClause(NULL, $3); }
1514 /* 13.13 Labelled Statements {{{ */
1516 : LabelIdentifier ":" LabelledItem { $$ = CYNew CYLabel($1, $3); }
1520 : Statement { $$ = $1; }
1521 | LexSetStatement LexSetRegExp FunctionDeclaration { $$ = $3; }
1524 /* 13.14 The throw Statement {{{ */
1526 : "throw" LexNewLine
1530 : Throw LexSetRegExp TerminatorSoft { CYERR(@1, "throw without exception"); }
1531 | Throw Expression Terminator { $$ = CYNew cy::Syntax::Throw($2); }
1534 /* 13.15 The try Statement {{{ */
1536 : "try" Block Catch { $$ = CYNew cy::Syntax::Try($2, $3, NULL); }
1537 | "try" Block Finally { $$ = CYNew cy::Syntax::Try($2, NULL, $3); }
1538 | "try" Block Catch Finally { $$ = CYNew cy::Syntax::Try($2, $3, $4); }
1542 : "catch" "(" CatchParameter ")" Block { $$ = CYNew cy::Syntax::Catch($3, $5); }
1546 : "finally" Block { $$ = CYNew CYFinally($2); }
1550 : BindingIdentifier { $$ = $1; }
1551 | BindingPattern { CYNOT(@$); }
1554 /* 13.16 The debugger Statement {{{ */
1556 : "debugger" Terminator { $$ = CYNew CYDebugger(); }
1560 /* 14.1 Function Definitions {{{ */
1562 : ";function" BindingIdentifier "(" FormalParameters ")" BRACE LexPushSuperOff FunctionBody "}" LexPopSuper { $$ = CYNew CYFunctionStatement($2, $4, $8); }
1566 : "function" BindingIdentifierOpt "(" LexPushInOff FormalParameters ")" LexPopIn BRACE LexPushSuperOff LexPushInOff FunctionBody "}" LexPopIn LexPopSuper { $$ = CYNew CYFunctionExpression($2, $5, $11); }
1569 StrictFormalParameters
1570 : FormalParameters { $$ = $1; }
1575 | FormalParameterList
1578 FormalParameterList_
1579 : "," FormalParameterList { $$ = $2; }
1584 : FunctionRestParameter { CYNOT(@$); }
1585 | FormalParameter FormalParameterList_ { $$ = CYNew CYFunctionParameter($1, $2); }
1588 FunctionRestParameter
1589 : BindingRestElement
1593 : BindingElement { $$ = $1; }
1597 : LexPushYieldOff FunctionStatementList LexPopYield { $$ = $2; }
1600 FunctionStatementList
1601 : LexPushReturnOn StatementListOpt LexPopReturn { $$ = $2; }
1604 /* 14.2 Arrow Function Definitions {{{ */
1606 : LexSetRegExp ArrowParameters "=>" LexNoBrace ConciseBody { $$ = CYNew CYFatArrow($2, $5); }
1610 : BindingIdentifier { $$ = CYNew CYFunctionParameter(CYNew CYDeclaration($1)); }
1611 | CoverParenthesizedExpressionAndArrowParameterList { if ($1 == NULL) $$ = NULL; else { $$ = $1->expression_->Parameter(); if ($$ == NULL) CYERR(@1, "invalid parameter list"); } }
1615 : AssignmentExpression { $$ = CYNew CYReturn($1); }
1616 | LexSetRegExp ";{" LexPushInOff FunctionBody "}" LexPopIn { $$ = $4; }
1619 /* 14.3 Method Definitions {{{ */
1621 : PropertyName "(" StrictFormalParameters ")" BRACE FunctionBody "}" { $$ = CYNew CYPropertyMethod($1, $3, $6); }
1622 | GeneratorMethod { $$ = $1; }
1623 | "get" PropertyName "(" ")" BRACE FunctionBody "}" { $$ = CYNew CYPropertyGetter($2, $6); }
1624 | "set" PropertyName "(" PropertySetParameterList ")" BRACE FunctionBody "}" { $$ = CYNew CYPropertySetter($2, CYNew CYFunctionParameter($4), $7); }
1627 PropertySetParameterList
1628 : FormalParameter { $$ = $1; }
1631 /* 14.4 Generator Function Definitions {{{ */
1633 : "*" PropertyName "(" StrictFormalParameters ")" BRACE GeneratorBody "}" { CYNOT(@$); /* $$ = CYNew CYGeneratorMethod($2, $4, $7); */ }
1636 GeneratorDeclaration
1637 : ";function" "*" BindingIdentifier "(" FormalParameters ")" BRACE GeneratorBody "}" { CYNOT(@$); /* $$ = CYNew CYGeneratorStatement($3, $5, $8); */ }
1641 : "function" "*" BindingIdentifierOpt "(" FormalParameters ")" BRACE GeneratorBody "}" { CYNOT(@$); /* $$ = CYNew CYGeneratorExpression($3, $5, $8); */ }
1645 : LexPushYieldOn FunctionStatementList LexPopYield { $$ = $2; }
1649 : "!yield" LexNewLine LexNoStar
1653 : Yield LexSetRegExp NewLineOpt { CYNOT(@$); /* $$ = CYNew CYYieldValue(NULL); */ }
1654 | Yield AssignmentExpression { CYNOT(@$); /* $$ = CYNew CYYieldValue($2); */ }
1655 | Yield LexSetRegExp YieldStar AssignmentExpression { CYNOT(@$); /* $$ = CYNew CYYieldGenerator($4); */ }
1658 /* 14.5 Class Definitions {{{ */
1660 : ";class" BindingIdentifier ClassTail { $$ = CYNew CYClassStatement($2, $3); }
1664 : "class" BindingIdentifierOpt ClassTail { $$ = CYNew CYClassExpression($2, $3); }
1668 : ClassHeritageOpt { driver.class_.push($1); } BRACE LexPushSuperOn ClassBodyOpt "}" LexPopSuper { driver.class_.pop(); $$ = $1; }
1672 : "extends" LeftHandSideExpression { $$ = CYNew CYClassTail($2); }
1676 : ClassHeritage { $$ = $1; }
1677 | { $$ = CYNew CYClassTail(NULL); }
1690 : ClassElementListOpt ClassElement
1699 : MethodDefinition { if (CYFunctionExpression *constructor = $1->Constructor()) driver.class_.top()->constructor_ = constructor; else driver.class_.top()->instance_->*$1; }
1700 | "static" MethodDefinition { driver.class_.top()->static_->*$2; }
1705 /* 15.1 Scripts {{{ */
1707 : ScriptBodyOpt { driver.script_ = CYNew CYScript($1); }
1711 : StatementList { $$ = $1; }
1715 : ScriptBody { $$ = $1; }
1716 | LexSetStatement LexSetRegExp { $$ = NULL; }
1719 /* 15.2 Modules {{{ */
1734 : ModuleItemListOpt ModuleItem
1743 : LexSetStatement LexSetRegExp ImportDeclaration
1744 | LexSetStatement LexSetRegExp ExportDeclaration
1748 /* 15.2.2 Imports {{{ */
1750 : "import" ImportClause FromClause Terminator
1751 | "import" ModuleSpecifier Terminator
1755 : ImportedDefaultBinding
1758 | ImportedDefaultBinding "," NameSpaceImport
1759 | ImportedDefaultBinding "," NamedImports
1762 ImportedDefaultBinding
1767 : "*" "as" ImportedBinding
1771 : BRACE ImportsListOpt "}"
1775 : "from" ModuleSpecifier
1779 : "," ImportsListOpt
1784 : ImportSpecifier ImportsList_
1794 | IdentifierName "as" ImportedBinding
1805 /* 15.2.3 Exports {{{ */
1807 : "*" FromClause Terminator
1808 | ExportClause FromClause Terminator
1809 | ExportClause Terminator
1811 | "default" LexSetStatement LexSetRegExp HoistableDeclaration
1812 | "default" LexSetStatement LexSetRegExp ClassDeclaration
1813 | "default" LexSetStatement AssignmentExpression Terminator
1817 : "export" LexSetStatement LexSetRegExp ExportDeclaration_
1818 | "export" Declaration
1822 : ";{" ExportsListOpt "}"
1826 : "," ExportsListOpt
1831 : ExportSpecifier ExportsList_
1841 | IdentifierName "as" IdentifierName
1846 /* Cycript (C): Type Encoding {{{ */
1848 : IdentifierType { $$ = CYNew CYTypedIdentifier(@1, $1); }
1849 | "(" LexPushInOff "*" TypeQualifierRight ")" LexPopIn { $$ = $4; }
1853 : SuffixedType "[" NumericLiteral "]" { $$ = $1; $$->modifier_ = CYNew CYTypeArrayOf($3, $$->modifier_); }
1854 | "(" LexPushInOff "^" TypeQualifierRight ")" LexPopIn "(" LexPushInOff TypedParameterListOpt ")" LexPopIn { $$ = $4; $$->modifier_ = CYNew CYTypeBlockWith($9, $$->modifier_); }
1855 | TypeSignifier "(" LexPushInOff TypedParameterListOpt ")" LexPopIn { $$ = $1; $$->modifier_ = CYNew CYTypeFunctionWith($4, $$->modifier_); }
1856 | "(" LexPushInOff TypedParameterListOpt ")" LexPopIn { $$ = CYNew CYTypedIdentifier(@1); $$->modifier_ = CYNew CYTypeFunctionWith($3, $$->modifier_); }
1857 | TypeSignifier { $$ = $1; }
1858 | { $$ = CYNew CYTypedIdentifier(@$); }
1862 : "*" TypeQualifierRight { $$ = $2; $$->modifier_ = CYNew CYTypePointerTo($$->modifier_); }
1867 | "const" TypeQualifierLeft { $$ = $2; CYSetLast($$) = CYNew CYTypeConstant(); }
1868 | "volatile" TypeQualifierLeft { $$ = $2; CYSetLast($$) = CYNew CYTypeVolatile(); }
1872 : PrefixedType { $$ = $1; }
1873 | SuffixedType { $$ = $1; }
1874 | "const" TypeQualifierRight { $$ = $2; $$->modifier_ = CYNew CYTypeConstant($$->modifier_); }
1875 | "volatile" TypeQualifierRight { $$ = $2; $$->modifier_ = CYNew CYTypeVolatile($$->modifier_); }
1879 : "int" { $$ = CYNew CYTypeVariable("int"); }
1880 | "unsigned" IntegerTypeOpt { $$ = CYNew CYTypeUnsigned($2); }
1881 | "signed" IntegerTypeOpt { $$ = CYNew CYTypeSigned($2); }
1882 | "long" IntegerTypeOpt { $$ = CYNew CYTypeLong($2); }
1883 | "short" IntegerTypeOpt { $$ = CYNew CYTypeShort($2); }
1887 : IntegerType { $$ = $1; }
1888 | { $$ = CYNew CYTypeVariable("int"); }
1892 : IdentifierType { $$ = CYNew CYTypeVariable($1); }
1893 | IntegerType { $$ = $1; }
1894 | "void" { $$ = CYNew CYTypeVoid(); }
1895 | "char" { $$ = CYNew CYTypeVariable("char"); }
1896 | "signed" "char" { $$ = CYNew CYTypeSigned(CYNew CYTypeVariable("char")); }
1897 | "unsigned" "char" { $$ = CYNew CYTypeUnsigned(CYNew CYTypeVariable("char")); }
1901 : TypeQualifierLeft PrimitiveType TypeQualifierRight { $$ = $3; $$->specifier_ = $2; CYSetLast($1) = $$->modifier_; $$->modifier_ = $1; }
1905 : "@encode" "(" TypedIdentifier ")" { $$ = CYNew CYEncodedType($3); }
1911 /* Cycript (Objective-C): @class Declaration {{{ */
1913 /* XXX: why the hell did I choose MemberExpression? */
1914 : ":" LexSetRegExp MemberExpression { $$ = $3; }
1918 ImplementationFieldListOpt
1919 : TypedIdentifier ";" ImplementationFieldListOpt { $$ = CYNew CYImplementationField($1, $3); }
1920 | LexSetRegExp { $$ = NULL; }
1923 ImplementationFields
1924 : BRACE ImplementationFieldListOpt "}" { $$ = $2; }
1928 : "+" { $$ = false; }
1929 | "-" { $$ = true; }
1933 : "(" LexSetRegExp TypedIdentifier ")" { if ($3->identifier_ != NULL) CYERR($3->location_, "unexpected identifier"); $$ = $3; }
1934 | { $$ = CYNew CYTypedIdentifier(CYNew CYTypeVariable("id")); }
1938 : Word ":" TypeOpt Identifier { $3->identifier_ = $4; $$ = CYNew CYMessageParameter($1, $3); }
1941 MessageParameterList
1942 : MessageParameter MessageParameterListOpt { $1->SetNext($2); $$ = $1; }
1945 MessageParameterListOpt
1946 : MessageParameterList { $$ = $1; }
1951 : MessageParameterList { $$ = $1; }
1952 | Word { $$ = CYNew CYMessageParameter($1, NULL); }
1955 ClassMessageDeclaration
1956 : MessageScope TypeOpt MessageParameters BRACE LexPushSuperOn FunctionBody "}" LexPopSuper { $$ = CYNew CYMessage($1, $2, $3, $6); }
1959 ClassMessageDeclarationListOpt
1960 : ClassMessageDeclarationListOpt ClassMessageDeclaration { $2->SetNext($1); $$ = $2; }
1964 // XXX: this should be AssignmentExpressionNoRight
1966 : ShiftExpression ClassProtocolsOpt { $$ = CYNew CYProtocol($1, $2); }
1970 : "," ClassProtocols { $$ = $2; }
1974 ClassProtocolListOpt
1975 : "<" ClassProtocols ">" { $$ = $2; }
1979 ImplementationStatement
1980 : "@implementation" Identifier ClassSuperOpt ClassProtocolListOpt ImplementationFields ClassMessageDeclarationListOpt "@end" { $$ = CYNew CYImplementation($2, $3, $4, $5, $6); }
1988 : "@implementation" Identifier CategoryName ClassMessageDeclarationListOpt "@end" { $$ = CYNew CYCategory($2, $4); }
1992 : ImplementationStatement { $$ = $1; }
1993 | CategoryStatement { $$ = $1; }
1996 /* Cycript (Objective-C): Send Message {{{ */
1998 : "," AssignmentExpressionClassic VariadicCall { $$ = CYNew CYArgument(NULL, $2, $3); }
2003 : WordOpt { driver.contexts_.back().words_.push_back($1); } { $$ = $1; }
2004 | AutoComplete { driver.mode_ = CYDriver::AutoMessage; YYACCEPT; }
2008 : SelectorCall { $$ = $1; }
2009 | VariadicCall { $$ = $1; }
2013 : SelectorWordOpt ":" AssignmentExpressionClassic SelectorCall_ { $$ = CYNew CYArgument($1 ?: CYNew CYWord(""), $3, $4); }
2017 : SelectorCall { $$ = $1; }
2018 | Word { $$ = CYNew CYArgument($1, NULL); }
2022 : "[" LexPushInOff AssignmentExpressionClassic { driver.contexts_.push_back($3); } SelectorList "]" LexPopIn { driver.contexts_.pop_back(); } { $$ = CYNew CYSendDirect($3, $5); }
2023 | "[" LexPushInOff LexSetRegExp "super" { driver.context_ = NULL; } SelectorList "]" LexPopIn { $$ = CYNew CYSendSuper($6); }
2027 : WordOpt ":" SelectorExpressionOpt { $$ = CYNew CYSelectorPart($1, true, $3); }
2031 : SelectorExpression_ { $$ = $1; }
2032 | Word { $$ = CYNew CYSelectorPart($1, false, NULL); }
2035 SelectorExpressionOpt
2036 : SelectorExpression_ { $$ = $1; }
2041 : MessageExpression { $$ = $1; }
2042 | "@selector" "(" LexPushInOff SelectorExpression ")" LexPopIn { $$ = CYNew CYSelector($4); }
2047 /* Cycript: @import Directive {{{ */
2049 : ModulePath "." Word { $$ = CYNew CYModule($3, $1); }
2050 | Word { $$ = CYNew CYModule($1); }
2054 : "@import" ModulePath { $$ = CYNew CYImport($2); }
2059 /* Cycript (Objective-C): Boxed Expressions {{{ */
2061 : NullLiteral { $$ = $1; }
2062 | BooleanLiteral { $$ = $1; }
2063 | NumericLiteral { $$ = $1; }
2064 | StringLiteral { $$ = $1; }
2065 | ArrayLiteral { $$ = $1; }
2066 | ObjectLiteral { $$ = $1; }
2067 | CoverParenthesizedExpressionAndArrowParameterList { $$ = $1; }
2068 | "YES" { $$ = CYNew CYTrue(); }
2069 | "NO" { $$ = CYNew CYFalse(); }
2073 : "@" BoxableExpression { $$ = CYNew CYBox($2); }
2074 | "@YES" { $$ = CYNew CYBox(CYNew CYTrue()); }
2075 | "@NO" { $$ = CYNew CYBox(CYNew CYFalse()); }
2076 | "@true" { $$ = CYNew CYBox(CYNew CYTrue()); }
2077 | "@false" { $$ = CYNew CYBox(CYNew CYFalse()); }
2078 | "@null" { $$ = CYNew CYBox(CYNew CYNull()); }
2081 /* Cycript (Objective-C): Block Expressions {{{ */
2083 : "^" TypedIdentifier { if ($2->identifier_ != NULL) CYERR($2->location_, "unexpected identifier"); } BRACE LexPushInOff FunctionBody "}" LexPopIn { if (CYTypeFunctionWith *function = $2->Function()) $$ = CYNew CYObjCBlock($2, function->parameters_, $6); else CYERR($2->location_, "expected parameters"); }
2086 /* Cycript (Objective-C): Instance Literals {{{ */
2088 : "#" NumericLiteral { $$ = CYNew CYInstanceLiteral($2); }
2094 /* Cycript (C): Pointer Indirection/Addressing {{{ */
2095 LeftHandSideExpression
2096 : LexSetRegExp "*" UnaryExpression { $$ = CYNew CYIndirect($3); }
2100 : "&" UnaryExpression { $$ = CYNew CYAddressOf($2); }
2104 : "->" "[" Expression "]" { $$ = CYNew CYIndirectMember(NULL, $3); }
2105 | "->" IdentifierName { $$ = CYNew CYIndirectMember(NULL, CYNew CYString($2)); }
2106 | "->" AutoComplete { driver.mode_ = CYDriver::AutoIndirect; YYACCEPT; }
2109 /* Cycript (C): auto Compatibility {{{ */
2114 /* Cycript (C): Lambda Expressions {{{ */
2116 : "," TypedParameterList { $$ = $2; }
2121 : TypedIdentifier TypedParameterList_ { $$ = CYNew CYTypedParameter($1, $2); }
2124 TypedParameterListOpt
2125 : TypedParameterList { $$ = $1; }
2130 : "[" LexPushInOff LexSetRegExp "&" LexSetRegExp "]" LexPopIn "(" LexPushInOff TypedParameterListOpt ")" LexPopIn "->" TypedIdentifier BRACE LexPushInOff FunctionBody "}" LexPopIn { $$ = CYNew CYLambda($14, $10, $17); }
2133 /* Cycript (C): Type Definitions {{{ */
2135 : "typedef" TypedIdentifier { if ($2->identifier_ == NULL) CYERR($2->location_, "expected identifier"); } Terminator { $$ = CYNew CYTypeDefinition($2); }
2138 /* Cycript (C): extern "C" {{{ */
2140 : "extern" StringLiteral { if (strcmp($2->Value(), "C") != 0) CYERR(@2, "unknown extern binding"); } TypedIdentifier { if ($4->identifier_ == NULL) CYERR($4->location_, "expected identifier"); } Terminator { $$ = CYNew CYExternal($2, $4); }
2147 /* Lexer State {{{ */
2149 : { driver.PushCondition(CYDriver::RegExpCondition); }
2153 : { driver.PushCondition(CYDriver::XMLContentCondition); }
2157 : { driver.PushCondition(CYDriver::XMLTagCondition); }
2161 : { driver.PopCondition(); }
2165 : { driver.SetCondition(CYDriver::XMLContentCondition); }
2169 : { driver.SetCondition(CYDriver::XMLTagCondition); }
2172 /* Virtual Tokens {{{ */
2179 /* 8.1 Context Keywords {{{ */
2181 : "namespace" { $$ = CYNew CYIdentifier("namespace"); }
2182 | "xml" { $$ = CYNew CYIdentifier("xml"); }
2185 /* 8.3 XML Initializer Input Elements {{{ */
2187 : XMLComment { $$ = $1; }
2188 | XMLCDATA { $$ = $1; }
2189 | XMLPI { $$ = $1; }
2193 /* 11.1 Primary Expressions {{{ */
2195 : PropertyIdentifier { $$ = CYNew CYPropertyVariable($1); }
2196 | XMLInitialiser { $$ = $1; }
2197 | XMLListInitialiser { $$ = $1; }
2201 : AttributeIdentifier { $$ = $1; }
2202 | QualifiedIdentifier { $$ = $1; }
2203 | WildcardIdentifier { $$ = $1; }
2206 /* 11.1.1 Attribute Identifiers {{{ */
2208 : "@" QualifiedIdentifier_ { $$ = CYNew CYAttribute($2); }
2212 : PropertySelector { $$ = $1; }
2213 | "[" LexPushInOff Expression "]" LexPopIn { $$ = CYNew CYSelector($3); }
2217 : Identifier { $$ = CYNew CYSelector($1); }
2218 | WildcardIdentifier { $$ = $1; }
2221 /* 11.1.2 Qualified Identifiers {{{ */
2222 QualifiedIdentifier_
2223 : PropertySelector_ { $$ = CYNew CYQualified(NULL, $1); }
2224 | QualifiedIdentifier { $$ = $1; }
2228 : PropertySelector "::" PropertySelector_ { $$ = CYNew CYQualified($1, $3); }
2231 /* 11.1.3 Wildcard Identifiers {{{ */
2233 : "*" { $$ = CYNew CYWildcard(); }
2236 /* 11.1.4 XML Initializer {{{ */
2238 : XMLMarkup { $$ = $1; }
2239 | XMLElement { $$ = $1; }
2243 : "<" LexPushInOff XMLTagContent LexPop "/>" LexPopIn
2244 | "<" LexPushInOff XMLTagContent ">" LexSetXMLContent XMLElementContentOpt "</" LexSetXMLTag XMLTagName XMLWhitespaceOpt LexPop ">" LexPopIn
2248 : LexPushXMLTag XMLTagName XMLAttributes
2252 : BRACE LexPushRegExp Expression LexPop "}"
2261 : XMLAttributes_ XMLAttribute
2266 : XMLAttributes_ XMLWhitespace XMLExpression XMLWhitespaceOpt
2267 | XMLAttributes_ XMLWhitespaceOpt
2276 : XMLWhitespace XMLName XMLWhitespaceOpt "=" XMLWhitespaceOpt XMLAttributeValue_
2280 : XMLExpression XMLElementContentOpt
2281 | XMLMarkup XMLElementContentOpt
2282 | XMLText XMLElementContentOpt
2283 | XMLElement XMLElementContentOpt
2286 XMLElementContentOpt
2291 /* 11.1.5 XMLList Initializer {{{ */
2293 : "<>" LexPushInOff LexPushXMLContent XMLElementContent LexPop "</>" LexPopIn { $$ = CYNew CYXMLList($4); }
2297 /* 11.2 Left-Hand-Side Expressions {{{ */
2299 : Identifier { $$ = $1; }
2300 | PropertyIdentifier { $$ = $1; }
2304 : "." PropertyIdentifier { $$ = CYNew CYPropertyMember(NULL, $2); }
2305 | ".." PropertyIdentifier_ { $$ = CYNew CYDescendantMember(NULL, $2); }
2306 | "." "(" Expression ")" { $$ = CYNew CYFilteringPredicate(NULL, $3); }
2309 /* 12.1 The default xml namespace Statement {{{ */
2310 /* XXX: DefaultXMLNamespaceStatement
2311 : "default" "xml" "namespace" "=" Expression Terminator { $$ = CYNew CYDefaultXMLNamespace($5); }
2315 : DefaultXMLNamespaceStatement { $$ = $1; }
2320 /* JavaScript FTL: Array Comprehensions {{{ */
2322 : AssignmentExpression ComprehensionFor ComprehensionTail { $$ = CYNew CYArrayComprehension($1, $2->Modify($3)); }
2326 : "for" "each" "(" LexPushInOn LexicalBinding "!in" LexPopIn Expression ")" { $$ = CYNew CYForOfComprehension($5, $8); }
2329 /* JavaScript FTL: for each {{{ */
2331 : "for" "each" "(" LexPushInOn ForInStatementInitializer "!in" LexPopIn Expression ")" Statement { $$ = CYNew CYForOf($5, $8, $10); }
2335 /* JavaScript FTW: Array Comprehensions {{{ */
2337 : ArrayComprehension
2341 : "[" LexPushInOff Comprehension "]" LexPopIn { $$ = $3; }
2345 : LexSetRegExp ComprehensionFor ComprehensionTail AssignmentExpression { $$ = CYNew CYArrayComprehension($4, $2->Modify($3)); }
2350 | ComprehensionFor ComprehensionTail { $$ = $1->Modify($2); }
2351 | ComprehensionIf ComprehensionTail { $$ = $1->Modify($2); }
2355 : "for" "(" LexPushInOn ForBinding "!in" LexPopIn Expression ")" { $$ = CYNew CYForInComprehension($4, $7); }
2356 | "for" "(" LexPushInOn ForBinding "of" LexPopIn Expression ")" { $$ = CYNew CYForOfComprehension($4, $7); }
2360 : "if" "(" AssignmentExpression ")" { $$ = CYNew CYIfComprehension($3); }
2363 /* JavaScript FTW: Coalesce Operator {{{ */
2364 ConditionalExpression
2365 : LogicalORExpression "?" LexPushInOff LexSetRegExp ":" LexPopIn AssignmentExpression { $$ = CYNew CYCondition($1, $1, $7); }
2368 /* JavaScript FTW: Named Arguments {{{ */
2370 : LexSetRegExp Word ":" AssignmentExpression ArgumentList_ { $$ = CYNew CYArgument($2, $4, $5); }
2373 /* JavaScript FTW: Ruby Blocks {{{ */
2374 RubyProcParameterList_
2375 : "," RubyProcParameterList { $$ = $2; }
2379 RubyProcParameterList
2380 : Identifier RubyProcParameterList_ { $$ = CYNew CYFunctionParameter(CYNew CYDeclaration($1), $2); }
2385 : LexSetRegExp "|" RubyProcParameterList "|" { $$ = $3; }
2386 | LexSetRegExp "||" { $$ = NULL; }
2389 RubyProcParametersOpt
2390 : RubyProcParameters { $$ = $1; }
2395 : "{" RubyProcParametersOpt StatementListOpt "}" { $$ = CYNew CYRubyProc($2, $3); }
2399 : BRACE LexPushInOff RubyProcParameters StatementListOpt "}" LexPopIn { $$ = CYNew CYRubyProc($3, $4); }
2403 : PostfixExpression RubyProcExpression { $$ = CYNew CYRubyBlock($1, $2); }
2409 bool CYDriver::Parse(CYMark mark) {
2411 CYLocal<CYPool> local(&pool_);
2412 cy::parser parser(*this);
2414 parser.set_debug_level(debug_);
2416 return parser.parse() != 0;
2419 void CYDriver::Warning(const cy::parser::location_type &location, const char *message) {
2423 CYDriver::Error error;
2424 error.warning_ = true;
2425 error.location_ = location;
2426 error.message_ = message;
2427 errors_.push_back(error);
2430 void cy::parser::error(const cy::parser::location_type &location, const std::string &message) {
2431 CYDriver::Error error;
2432 error.warning_ = false;
2433 error.location_ = location;
2434 error.message_ = message;
2435 driver.errors_.push_back(error);