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 cyscanner driver.scanner_
24 #define YYSTACKEXPANDABLE 1
30 #define CYNew new($pool)
33 #include "ObjectiveC/Syntax.hpp"
37 #include "E4X/Syntax.hpp"
40 #include "Highlight.hpp"
49 CYDriver::Condition condition_;
51 CYArgument *argument_;
52 CYAssignment *assignment_;
55 cy::Syntax::Catch *catch_;
57 CYComprehension *comprehension_;
58 CYDeclaration *declaration_;
59 CYDeclarations *declarations_;
61 CYExpression *expression_;
64 CYForInitialiser *for_;
65 CYForInInitialiser *forin_;
66 CYFunctionParameter *functionParameter_;
67 CYIdentifier *identifier_;
74 CYParenthetical *parenthetical_;
76 CYProperty *property_;
77 CYPropertyName *propertyName_;
78 CYRubyProc *rubyProc_;
79 CYStatement *statement_;
86 CYTypeModifier *modifier_;
87 CYTypeSpecifier *specifier_;
88 CYTypedIdentifier *typedIdentifier_;
89 CYTypedParameter *typedParameter_;
93 CYClassName *className_;
94 CYClassField *classField_;
96 CYMessageParameter *messageParameter_;
97 CYProtocol *protocol_;
98 CYSelectorPart *selector_;
102 CYAttribute *attribute_;
103 CYPropertyIdentifier *propertyIdentifier_;
104 CYSelector *selector_;
109 #define YYSTYPE YYSTYPE
113 int cylex(YYSTYPE *, CYLocation *, void *);
121 @$.begin.filename = @$.end.filename = &driver.filename_;
127 %define api.location.type { CYLocation }
134 %parse-param { CYDriver &driver }
135 %lex-param { void *cyscanner }
137 /* Token Declarations {{{ */
143 %token XMLAttributeValue
145 %token XMLTagCharacters
151 %token LeftRight "<>"
152 %token LeftSlashRight "</>"
154 %token SlashRight "/>"
155 %token LeftSlash "</"
157 %token ColonColon "::"
158 %token PeriodPeriod ".."
161 @begin E4X ObjectiveC
167 %token AmpersandAmpersand "&&"
168 %token AmpersandEqual "&="
170 %token CarrotEqual "^="
172 %token EqualEqual "=="
173 %token EqualEqualEqual "==="
174 %token EqualRight "=>"
175 %token Exclamation "!"
176 %token ExclamationEqual "!="
177 %token ExclamationEqualEqual "!=="
179 %token HyphenEqual "-="
180 %token HyphenHyphen "--"
181 %token HyphenHyphen_ "\n--"
182 %token HyphenRight "->"
184 %token LeftEqual "<="
186 %token LeftLeftEqual "<<="
188 %token PercentEqual "%="
190 %token PeriodPeriodPeriod "..."
192 %token PipeEqual "|="
195 %token PlusEqual "+="
197 %token PlusPlus_ "\n++"
199 %token RightEqual ">="
200 %token RightRight ">>"
201 %token RightRightEqual ">>="
202 %token RightRightRight ">>>"
203 %token RightRightRightEqual ">>>="
205 %token SlashEqual "/="
207 %token StarEqual "*="
216 %token <comment_> Comment
219 %token CloseParen ")"
222 %token OpenBrace_ "\n{"
223 %token OpenBrace__ ";{"
224 %token CloseBrace "}"
226 %token OpenBracket "["
227 %token CloseBracket "]"
229 %token AtError "@error"
232 %token AtClass "@class"
236 %token <identifier_> Typedef "typedef"
237 %token <identifier_> Unsigned "unsigned"
238 %token <identifier_> Signed "signed"
239 %token <identifier_> Extern "extern"
243 %token AtEncode "@encode"
247 %token AtImplementation "@implementation"
248 %token AtImplementation_ ";@implementation"
249 %token AtImport "@import"
251 %token AtSelector "@selector"
252 %token <identifier_> Yes "YES"
253 %token <identifier_> No "NO"
256 %token <false_> False "false"
257 %token <null_> Null "null"
258 %token <true_> True "true"
260 // ES3/ES5/WIE/JSC Reserved
261 %token <word_> Auto "auto"
262 %token <word_> Break "break"
263 %token <word_> Case "case"
264 %token <word_> Catch "catch"
265 %token <word_> Continue "continue"
266 %token <word_> Default "default"
267 %token <word_> Delete "delete"
268 %token <word_> Do "do"
269 %token <word_> Else "else"
270 %token <word_> Finally "finally"
271 %token <word_> For "for"
272 %token <word_> Function "function"
273 %token <word_> Function_ ";function"
274 %token <word_> If "if"
275 %token <word_> In "in"
276 %token <word_> In_ "!in"
277 %token <word_> InstanceOf "instanceof"
278 %token <word_> New "new"
279 %token <word_> Return "return"
280 %token <word_> Switch "switch"
281 %token <this_> This "this"
282 %token <word_> Throw "throw"
283 %token <word_> Try "try"
284 %token <word_> TypeOf "typeof"
285 %token <word_> Var "var"
286 %token <word_> Void "void"
287 %token <word_> While "while"
288 %token <word_> With "with"
290 // ES3/IE6 Future, ES5/JSC Reserved
291 %token <word_> Debugger "debugger"
293 // ES3/ES5/IE6 Future, JSC Reserved
294 %token <word_> Const "const"
296 // ES3/ES5/IE6/JSC Future
297 %token <word_> Class "class"
298 %token <word_> Enum "enum"
299 %token <word_> Export "export"
300 %token <word_> Extends "extends"
301 %token <word_> Import "import"
302 %token <word_> Super "super"
304 // ES3 Future, ES5 Strict Future
305 %token <identifier_> Implements "implements"
306 %token <identifier_> Interface "interface"
307 %token <identifier_> Package "package"
308 %token <identifier_> Private "private"
309 %token <identifier_> Protected "protected"
310 %token <identifier_> Public "public"
311 %token <identifier_> Static "static"
314 %token <identifier_> Abstract "abstract"
315 %token <identifier_> Boolean "boolean"
316 %token <identifier_> Byte "byte"
317 %token <identifier_> Char "char"
318 %token <identifier_> Double "double"
319 %token <identifier_> Final "final"
320 %token <identifier_> Float "float"
321 %token <identifier_> Goto "goto"
322 %token <identifier_> Int "int"
323 %token <identifier_> Long "long"
324 %token <identifier_> Native "native"
325 %token <identifier_> Short "short"
326 %token <identifier_> Synchronized "synchronized"
327 %token <identifier_> Throws "throws"
328 %token <identifier_> Transient "transient"
329 %token <identifier_> Volatile "volatile"
332 %token <identifier_> Let "let"
333 %token <identifier_> Yield "yield"
336 %token <identifier_> Each "each"
337 %token <identifier_> Of "of"
341 %token <identifier_> Namespace "namespace"
342 %token <identifier_> XML "xml"
347 %token <identifier_> Identifier_
348 %token <number_> NumericLiteral
349 %token <string_> StringLiteral
350 %token <literal_> RegularExpressionLiteral
352 %type <expression_> AdditiveExpression
353 %type <argument_> ArgumentList_
354 %type <argument_> ArgumentList
355 %type <argument_> ArgumentListOpt
356 %type <argument_> Arguments
357 %type <expression_> ArrayComprehension
358 %type <expression_> ArrayInitialiser
359 %type <literal_> ArrayLiteral
360 %type <expression_> ArrowFunction
361 %type <functionParameter_> ArrowParameters
362 %type <expression_> AssignmentExpression
363 %type <identifier_> Binding
364 %type <identifier_> BindingIdentifier
365 %type <expression_> BitwiseANDExpression
366 %type <statement_> Block_
367 %type <statement_> Block
368 %type <boolean_> BooleanLiteral
369 %type <declaration_> BindingElement
370 %type <expression_> BitwiseORExpression
371 %type <expression_> BitwiseXORExpression
372 %type <statement_> BreakStatement
373 %type <statement_> BreakableStatement
374 %type <expression_> CallExpression_
375 %type <expression_> CallExpression
376 %type <clause_> CaseBlock
377 %type <clause_> CaseClause
378 %type <clause_> CaseClausesOpt
379 %type <catch_> CatchOpt
380 %type <expression_> Comprehension
381 %type <comprehension_> ComprehensionFor
382 %type <comprehension_> ComprehensionIf
383 %type <comprehension_> ComprehensionTail
384 %type <expression_> ConditionalExpression
385 %type <statement_> ContinueStatement
386 %type <statement_> ConciseBody
387 %type <statement_> DebuggerStatement
388 %type <statement_> Declaration__
389 %type <statement_> Declaration_
390 %type <statement_> Declaration
391 %type <clause_> DefaultClause
392 %type <expression_> Element
393 %type <expression_> ElementOpt
394 %type <element_> ElementList
395 %type <element_> ElementListOpt
396 %type <statement_> ElseStatementOpt
397 %type <statement_> EmptyStatement
398 %type <expression_> EqualityExpression
399 %type <expression_> Expression
400 %type <expression_> ExpressionOpt
401 %type <statement_> ExpressionStatement
402 %type <finally_> FinallyOpt
403 %type <for_> ForStatementInitialiser
404 %type <forin_> ForInStatementInitialiser
405 %type <declaration_> FormalParameter
406 %type <functionParameter_> FormalParameterList_
407 %type <functionParameter_> FormalParameterList
408 %type <functionParameter_> FormalParameterListOpt
409 %type <statement_> FunctionBody
410 %type <statement_> FunctionDeclaration
411 %type <expression_> FunctionExpression
412 %type <identifier_> Identifier
413 %type <identifier_> IdentifierOpt
414 %type <identifier_> IdentifierType
415 %type <word_> IdentifierName
416 %type <statement_> IfStatement
417 %type <expression_> Initialiser
418 %type <expression_> InitialiserOpt
419 %type <statement_> IterationStatement
420 %type <statement_> LabelledStatement
421 %type <expression_> LeftHandSideExpression
422 %type <statement_> LetStatement
423 %type <statement_> LexicalDeclaration
424 %type <literal_> Literal
425 %type <literal_> ValueLiteral
426 %type <expression_> LogicalANDExpression
427 %type <expression_> LogicalORExpression
428 %type <member_> MemberAccess
429 %type <expression_> MemberExpression_
430 %type <expression_> MemberExpression
431 %type <module_> Module
432 %type <expression_> MultiplicativeExpression
433 %type <expression_> NewExpression
434 %type <null_> NullLiteral
435 %type <literal_> ObjectLiteral
436 %type <parenthetical_> Parenthetical
437 %type <expression_> PostfixExpression
438 %type <expression_> PrimaryExpression
439 %type <statement_> Program
440 %type <statement_> ProgramBody
441 %type <statement_> ProgramBodyOpt
442 %type <propertyName_> PropertyName_
443 %type <propertyName_> PropertyName
444 %type <property_> PropertyDefinition
445 %type <property_> PropertyDefinitionList_
446 %type <property_> PropertyDefinitionList
447 %type <property_> PropertyDefinitionListOpt
448 %type <expression_> RelationalExpression
449 %type <statement_> ReturnStatement
450 %type <rubyProc_> RubyProcExpression
451 %type <functionParameter_> RubyProcParameterList_
452 %type <functionParameter_> RubyProcParameterList
453 %type <functionParameter_> RubyProcParameters
454 %type <functionParameter_> RubyProcParametersOpt
455 %type <expression_> ShiftExpression
456 %type <declaration_> SingleNameBinding
457 %type <statement_> Statement__
458 %type <statement_> Statement_
459 %type <statement_> Statement
460 %type <statement_> StatementList
461 %type <statement_> StatementListOpt
462 %type <statement_> StatementListItem
463 %type <statement_> SwitchStatement
464 %type <statement_> ThrowStatement
465 %type <statement_> TryStatement
466 %type <expression_> UnaryExpression_
467 %type <expression_> UnaryExpression
468 %type <declaration_> VariableDeclaration
469 %type <declarations_> VariableDeclarationList_
470 %type <declarations_> VariableDeclarationList
471 %type <statement_> VariableStatement
472 %type <statement_> WithStatement
475 %type <word_> WordOpt
477 %type <expression_> Variable
480 %type <specifier_> IntegerType
481 %type <specifier_> IntegerTypeOpt
482 %type <typedIdentifier_> PrefixedType
483 %type <specifier_> PrimitiveType
484 %type <typedIdentifier_> SuffixedType
485 %type <typedIdentifier_> TypeSignifier
486 %type <modifier_> TypeQualifierLeft
487 %type <typedIdentifier_> TypeQualifierRight
488 %type <typedIdentifier_> TypedIdentifier
489 %type <typedParameter_> TypedParameterList_
490 %type <typedParameter_> TypedParameterList
491 %type <typedParameter_> TypedParameterListOpt
495 %type <expression_> BoxableExpression
496 %type <statement_> CategoryStatement
497 %type <expression_> ClassExpression
498 %type <classField_> ClassFieldListOpt
499 %type <classField_> ClassFields
500 %type <statement_> ClassStatement
501 %type <expression_> ClassSuperOpt
502 %type <message_> ClassMessageDeclaration
503 %type <message_> ClassMessageDeclarationListOpt
504 %type <className_> ClassName
505 %type <className_> ClassNameOpt
506 %type <protocol_> ClassProtocolListOpt
507 %type <protocol_> ClassProtocols
508 %type <protocol_> ClassProtocolsOpt
509 %type <expression_> MessageExpression
510 %type <messageParameter_> MessageParameter
511 %type <messageParameter_> MessageParameters
512 %type <messageParameter_> MessageParameterList
513 %type <messageParameter_> MessageParameterListOpt
514 %type <bool_> MessageScope
515 %type <argument_> SelectorCall_
516 %type <argument_> SelectorCall
517 %type <selector_> SelectorExpression_
518 %type <selector_> SelectorExpression
519 %type <selector_> SelectorExpressionOpt
520 %type <argument_> SelectorList
521 %type <word_> SelectorWordOpt
522 %type <typedIdentifier_> TypeOpt
523 %type <argument_> VariadicCall
527 %type <propertyIdentifier_> PropertyIdentifier_
528 %type <selector_> PropertySelector_
529 %type <selector_> PropertySelector
530 %type <identifier_> QualifiedIdentifier_
531 %type <identifier_> QualifiedIdentifier
532 %type <identifier_> WildcardIdentifier
533 %type <identifier_> XMLComment
534 %type <identifier_> XMLCDATA
535 %type <identifier_> XMLElement
536 %type <identifier_> XMLElementContent
537 %type <identifier_> XMLMarkup
538 %type <identifier_> XMLPI
540 %type <attribute_> AttributeIdentifier
541 /* XXX: %type <statement_> DefaultXMLNamespaceStatement */
542 %type <expression_> PropertyIdentifier
543 %type <expression_> XMLListInitialiser
544 %type <expression_> XMLInitialiser
547 /* Token Priorities {{{ */
559 /* Lexer State {{{ */
561 : { driver.in_.push(true); }
565 : { driver.in_.push(false); }
569 : { driver.in_.pop(); }
573 : { driver.SetCondition(CYDriver::RegExpCondition); }
577 : { if (yyla.empty()) driver.no_.OpenBrace = true; else if (yyla.type == yytranslate_(token::OpenBrace) || yyla.type == yytranslate_(token::OpenBrace_)) yyla.type = yytranslate_(token::OpenBrace__); }
581 : { if (yyla.empty()) driver.no_.Function = true; else if (yyla.type == yytranslate_(token::Function)) yyla.type = yytranslate_(token::Function_); }
584 LexNoAtImplementation :
586 { if (yyla.empty()) driver.no_.AtImplementation = true; else if (yyla.type == yytranslate_(token::AtImplementation)) yyla.type = yytranslate_(token::AtImplementation_); }
591 : LexNoBrace LexNoFunction LexNoAtImplementation
594 /* Virtual Tokens {{{ */
605 /* 7.6 Identifier Names and Identifiers {{{ */
616 : Identifier { $$ = $1; }
617 | "auto" { $$ = $1; }
618 | "break" NewLineOpt { $$ = $1; }
619 | "case" { $$ = $1; }
620 | "catch" { $$ = $1; }
621 | "class" { $$ = $1; }
622 | "const" { $$ = $1; }
623 | "continue" NewLineOpt { $$ = $1; }
624 | "debugger" { $$ = $1; }
625 | "default" { $$ = $1; }
626 | "delete" LexSetRegExp { $$ = $1; }
628 | "else" { $$ = $1; }
629 | "enum" { $$ = $1; }
630 | "export" { $$ = $1; }
631 | "extends" { $$ = $1; }
632 | "false" { $$ = $1; }
633 | "finally" { $$ = $1; }
634 /* XXX: | "for" { $$ = $1; } */
635 | "function" { $$ = $1; }
637 | "import" { $$ = $1; }
638 /* XXX: | "in" { $$ = $1; } */
640 /* XXX: | "instanceof" { $$ = $1; } */
642 // XXX: as it currently is not an Identifier
645 | "new" LexSetRegExp { $$ = $1; }
646 | "null" { $$ = $1; }
647 | "return" NewLineOpt { $$ = $1; }
648 | "super" { $$ = $1; }
649 | "switch" { $$ = $1; }
650 | "this" { $$ = $1; }
651 | "throw" NewLineOpt { $$ = $1; }
652 | "true" { $$ = $1; }
654 | "typeof" LexSetRegExp { $$ = $1; }
656 | "void" LexSetRegExp { $$ = $1; }
657 | "while" { $$ = $1; }
658 | "with" { $$ = $1; }
669 : Identifier_ { $$ = $1; }
671 | "implements" { $$ = $1; }
672 | "interface" { $$ = $1; }
673 | "package" { $$ = $1; }
674 | "private" { $$ = $1; }
675 | "protected" { $$ = $1; }
676 | "public" { $$ = $1; }
677 | "static" { $$ = $1; }
679 | "abstract" { $$ = $1; }
680 | "boolean" { $$ = $1; }
681 | "byte" { $$ = $1; }
682 | "double" { $$ = $1; }
683 | "final" { $$ = $1; }
684 | "float" { $$ = $1; }
685 | "goto" { $$ = $1; }
686 | "native" { $$ = $1; }
687 | "synchronized" { $$ = $1; }
688 | "throws" { $$ = $1; }
689 | "transient" { $$ = $1; }
691 // XXX: currently I only have this as Word
692 // | "let" { $$ = $1; }
694 | "yield" { $$ = $1; }
696 | "each" { $$ = $1; }
702 | "char" { $$ = $1; }
704 | "long" { $$ = $1; }
705 | "short" { $$ = $1; }
706 | "volatile" { $$ = $1; }
708 | "typedef" { $$ = $1; }
709 | "unsigned" { $$ = $1; }
710 | "signed" { $$ = $1; }
711 | "extern" { $$ = $1; }
720 : Identifier { $$ = $1; }
725 /* 7.8 Literals {{{ */
727 : NullLiteral { $$ = $1; }
728 | ValueLiteral { $$ = $1; }
732 : BooleanLiteral { $$ = $1; }
733 | NumericLiteral { $$ = $1; }
734 | StringLiteral { $$ = $1; }
735 | RegularExpressionLiteral { $$ = $1; }
738 /* 7.8.1 Null Literals {{{ */
740 : "null" { $$ = $1; }
743 /* 7.8.2 Boolean Literals {{{ */
745 : "true" { $$ = $1; }
746 | "false" { $$ = $1; }
750 /* 7.9 Automatic Semicolon Insertion {{{ */
752 : { driver.Warning(@$, "warning, automatic semi-colon insertion required"); }
757 | error { if (yyla.type_get() != yyeof_ && yyla.type != yytranslate_(token::CloseBrace) && !yyla.value.newline_) { error(@1, "required semi-colon"); } else { yyerrok; driver.errors_.pop_back(); } } StrictSemi
762 | error { yyerrok; driver.errors_.pop_back(); } StrictSemi
766 /* 11.1 Primary Expressions {{{ */
768 : "(" LexPushInOff Expression ")" LexPopIn { $$ = CYNew CYParenthetical($3); }
772 : Identifier { $$ = CYNew CYVariable($1); }
776 : "this" { $$ = $1; }
777 | Variable { $$ = $1; }
778 | Literal { $$ = $1; }
779 | ArrayInitialiser { $$ = $1; }
780 | ObjectLiteral { $$ = $1; }
781 | Parenthetical { $$ = $1; }
782 | AutoComplete { driver.mode_ = CYDriver::AutoPrimary; YYACCEPT; }
785 /* 11.1.4 Array Initializer {{{ */
787 : ArrayLiteral { $$ = $1; }
788 | ArrayComprehension { $$ = $1; }
791 /* 11.1.4.1 Array Literal {{{ */
793 : "[" LexPushInOff ElementListOpt "]" LexPopIn { $$ = CYNew CYArray($3); }
797 : AssignmentExpression { $$ = $1; }
801 : Element { $$ = $1; }
802 | LexSetRegExp { $$ = NULL; }
806 : ElementOpt "," ElementListOpt { $$ = CYNew CYElement($1, $3); }
807 | Element { $$ = CYNew CYElement($1, NULL); }
811 : ElementList { $$ = $1; }
812 | LexSetRegExp { $$ = NULL; }
815 /* 11.1.4.2 Array Comprehension {{{ */
817 : "[" LexPushInOff Comprehension "]" LexPopIn { $$ = $3; }
821 : LexSetRegExp ComprehensionFor ComprehensionTail AssignmentExpression { $$ = CYNew CYArrayComprehension($4, $2->Modify($3)); }
826 | ComprehensionFor ComprehensionTail { $$ = $1->Modify($2); }
827 | ComprehensionIf ComprehensionTail { $$ = $1->Modify($2); }
831 : "for" "(" Binding "of" Expression ")" { $$ = CYNew CYForOfComprehension($3, $5); }
835 : "if" "(" AssignmentExpression ")" { $$ = CYNew CYIfComprehension($3); }
838 /* 11.1.5 Object Initialiser {{{ */
840 : BRACE LexPushInOff PropertyDefinitionListOpt "}" LexPopIn { $$ = CYNew CYObject($3); }
843 PropertyDefinitionList_
844 : "," PropertyDefinitionList { $$ = $2; }
845 | "," LexSetRegExp { $$ = NULL; }
849 PropertyDefinitionList
850 : PropertyDefinition PropertyDefinitionList_ { $1->SetNext($2); $$ = $1; }
853 PropertyDefinitionListOpt
854 : PropertyDefinitionList { $$ = $1; }
855 | LexSetRegExp { $$ = NULL; }
859 // XXX: this should be IdentifierName
860 : LexSetRegExp Identifier { $$ = CYNew CYProperty($2, CYNew CYVariable($2)); }
861 | PropertyName ":" AssignmentExpression { $$ = CYNew CYProperty($1, $3); }
866 : IdentifierName { $$ = $1; }
867 | StringLiteral { $$ = $1; }
868 | NumericLiteral { $$ = $1; }
872 : LexSetRegExp PropertyName_ { $$ = $2; }
876 /* 11.2 Left-Hand-Side Expressions {{{ */
878 : "[" LexPushInOff Expression "]" LexPopIn { $$ = CYNew CYDirectMember(NULL, $3); }
879 | "." IdentifierName { $$ = CYNew CYDirectMember(NULL, CYNew CYString($2)); }
880 | "." AutoComplete { driver.mode_ = CYDriver::AutoDirect; YYACCEPT; }
884 : MemberExpression { $$ = $1; }
885 //| "super" { $$ = $1; }
889 : LexSetRegExp PrimaryExpression { $$ = $2; }
890 | LexSetRegExp FunctionExpression { $$ = $2; }
891 | MemberExpression_ { driver.context_ = $1; } MemberAccess { $3->SetLeft($1); $$ = $3; }
892 | LexSetRegExp "new" MemberExpression Arguments { $$ = CYNew cy::Syntax::New($3, $4); }
896 : MemberExpression { $$ = $1; }
897 | LexSetRegExp "new" NewExpression { $$ = CYNew cy::Syntax::New($3, NULL); }
906 : CallExpression_ Arguments { $$ = CYNew CYCall($1, $2); }
907 | CallExpression { driver.context_ = $1; } MemberAccess { $3->SetLeft($1); $$ = $3; }
911 : "(" LexPushInOff ArgumentListOpt ")" LexPopIn { $$ = $3; }
915 : "," ArgumentList { $$ = $2; }
920 : AssignmentExpression ArgumentList_ { $$ = CYNew CYArgument(NULL, $1, $2); }
921 | LexSetRegExp Word ":" AssignmentExpression ArgumentList_ { $$ = CYNew CYArgument($2, $4, $5); }
925 : ArgumentList { $$ = $1; }
926 | LexSetRegExp { $$ = NULL; }
929 LeftHandSideExpression
930 : NewExpression { $$ = $1; }
931 | CallExpression { $$ = $1; }
934 /* 11.3 Postfix Expressions {{{ */
936 : %prec "" LeftHandSideExpression { $$ = $1; }
937 | LeftHandSideExpression "++" { $$ = CYNew CYPostIncrement($1); }
938 | LeftHandSideExpression "--" { $$ = CYNew CYPostDecrement($1); }
941 /* 11.4 Unary Operators {{{ */
943 : "delete" UnaryExpression { $$ = CYNew CYDelete($2); }
944 | "void" UnaryExpression { $$ = CYNew CYVoid($2); }
945 | "typeof" UnaryExpression { $$ = CYNew CYTypeOf($2); }
946 | "++" UnaryExpression { $$ = CYNew CYPreIncrement($2); }
947 | "\n++" UnaryExpression { $$ = CYNew CYPreIncrement($2); }
948 | "--" UnaryExpression { $$ = CYNew CYPreDecrement($2); }
949 | "\n--" UnaryExpression { $$ = CYNew CYPreDecrement($2); }
950 | "+" UnaryExpression { $$ = CYNew CYAffirm($2); }
951 | "-" UnaryExpression { $$ = CYNew CYNegate($2); }
952 | "~" UnaryExpression { $$ = CYNew CYBitwiseNot($2); }
953 | "!" UnaryExpression { $$ = CYNew CYLogicalNot($2); }
957 : PostfixExpression { $$ = $1; }
958 | LexSetRegExp UnaryExpression_ { $$ = $2; }
961 /* 11.5 Multiplicative Operators {{{ */
962 MultiplicativeExpression
963 : UnaryExpression { $$ = $1; }
964 | MultiplicativeExpression "*" UnaryExpression { $$ = CYNew CYMultiply($1, $3); }
965 | MultiplicativeExpression "/" UnaryExpression { $$ = CYNew CYDivide($1, $3); }
966 | MultiplicativeExpression "%" UnaryExpression { $$ = CYNew CYModulus($1, $3); }
969 /* 11.6 Additive Operators {{{ */
971 : MultiplicativeExpression { $$ = $1; }
972 | AdditiveExpression "+" MultiplicativeExpression { $$ = CYNew CYAdd($1, $3); }
973 | AdditiveExpression "-" MultiplicativeExpression { $$ = CYNew CYSubtract($1, $3); }
976 /* 11.7 Bitwise Shift Operators {{{ */
978 : AdditiveExpression { $$ = $1; }
979 | ShiftExpression "<<" AdditiveExpression { $$ = CYNew CYShiftLeft($1, $3); }
980 | ShiftExpression ">>" AdditiveExpression { $$ = CYNew CYShiftRightSigned($1, $3); }
981 | ShiftExpression ">>>" AdditiveExpression { $$ = CYNew CYShiftRightUnsigned($1, $3); }
984 /* 11.8 Relational Operators {{{ */
986 : ShiftExpression { $$ = $1; }
987 | RelationalExpression "<" ShiftExpression { $$ = CYNew CYLess($1, $3); }
988 | RelationalExpression ">" ShiftExpression { $$ = CYNew CYGreater($1, $3); }
989 | RelationalExpression "<=" ShiftExpression { $$ = CYNew CYLessOrEqual($1, $3); }
990 | RelationalExpression ">=" ShiftExpression { $$ = CYNew CYGreaterOrEqual($1, $3); }
991 | RelationalExpression "instanceof" ShiftExpression { $$ = CYNew CYInstanceOf($1, $3); }
992 | RelationalExpression "in" ShiftExpression { $$ = CYNew CYIn($1, $3); }
995 /* 11.9 Equality Operators {{{ */
997 : RelationalExpression { $$ = $1; }
998 | EqualityExpression "==" RelationalExpression { $$ = CYNew CYEqual($1, $3); }
999 | EqualityExpression "!=" RelationalExpression { $$ = CYNew CYNotEqual($1, $3); }
1000 | EqualityExpression "===" RelationalExpression { $$ = CYNew CYIdentical($1, $3); }
1001 | EqualityExpression "!==" RelationalExpression { $$ = CYNew CYNotIdentical($1, $3); }
1004 /* 11.10 Binary Bitwise Operators {{{ */
1005 BitwiseANDExpression
1006 : EqualityExpression { $$ = $1; }
1007 | BitwiseANDExpression "&" EqualityExpression { $$ = CYNew CYBitwiseAnd($1, $3); }
1010 BitwiseXORExpression
1011 : BitwiseANDExpression { $$ = $1; }
1012 | BitwiseXORExpression "^" BitwiseANDExpression { $$ = CYNew CYBitwiseXOr($1, $3); }
1016 : BitwiseXORExpression { $$ = $1; }
1017 | BitwiseORExpression "|" BitwiseXORExpression { $$ = CYNew CYBitwiseOr($1, $3); }
1020 /* 11.11 Binary Logical Operators {{{ */
1021 LogicalANDExpression
1022 : BitwiseORExpression { $$ = $1; }
1023 | LogicalANDExpression "&&" BitwiseORExpression { $$ = CYNew CYLogicalAnd($1, $3); }
1027 : LogicalANDExpression { $$ = $1; }
1028 | LogicalORExpression "||" LogicalANDExpression { $$ = CYNew CYLogicalOr($1, $3); }
1031 /* 11.12 Conditional Operator ( ? : ) {{{ */
1032 ConditionalExpression
1033 : LogicalORExpression { $$ = $1; }
1034 | LogicalORExpression "?" LexPushInOff AssignmentExpression ":" LexPopIn AssignmentExpression { $$ = CYNew CYCondition($1, $4, $7); }
1035 | LogicalORExpression "?" LexPushInOff LexSetRegExp ":" LexPopIn AssignmentExpression { $$ = CYNew CYCondition($1, $1, $7); }
1038 /* 11.13 Assignment Operators {{{ */
1039 AssignmentExpression
1040 : ConditionalExpression { $$ = $1; }
1041 | ArrowFunction { $$ = $1; }
1042 | LeftHandSideExpression "=" AssignmentExpression { $$ = CYNew CYAssign($1, $3); }
1043 | LeftHandSideExpression "*=" AssignmentExpression { $$ = CYNew CYMultiplyAssign($1, $3); }
1044 | LeftHandSideExpression "/=" AssignmentExpression { $$ = CYNew CYDivideAssign($1, $3); }
1045 | LeftHandSideExpression "%=" AssignmentExpression { $$ = CYNew CYModulusAssign($1, $3); }
1046 | LeftHandSideExpression "+=" AssignmentExpression { $$ = CYNew CYAddAssign($1, $3); }
1047 | LeftHandSideExpression "-=" AssignmentExpression { $$ = CYNew CYSubtractAssign($1, $3); }
1048 | LeftHandSideExpression "<<=" AssignmentExpression { $$ = CYNew CYShiftLeftAssign($1, $3); }
1049 | LeftHandSideExpression ">>=" AssignmentExpression { $$ = CYNew CYShiftRightSignedAssign($1, $3); }
1050 | LeftHandSideExpression ">>>=" AssignmentExpression { $$ = CYNew CYShiftRightUnsignedAssign($1, $3); }
1051 | LeftHandSideExpression "&=" AssignmentExpression { $$ = CYNew CYBitwiseAndAssign($1, $3); }
1052 | LeftHandSideExpression "^=" AssignmentExpression { $$ = CYNew CYBitwiseXOrAssign($1, $3); }
1053 | LeftHandSideExpression "|=" AssignmentExpression { $$ = CYNew CYBitwiseOrAssign($1, $3); }
1056 /* 11.14 Comma Operator {{{ */
1058 : AssignmentExpression { $$ = $1; }
1059 | AssignmentExpression "," Expression { $$ = CYNew CYCompound($1, $3); }
1063 : Expression { $$ = $1; }
1064 | LexSetRegExp { $$ = NULL; }
1068 /* 12 Statements {{{ */
1070 : Block { $$ = $1; }
1071 | VariableStatement { $$ = $1; }
1072 | EmptyStatement { $$ = $1; }
1073 | IfStatement { $$ = $1; }
1074 | BreakableStatement { $$ = $1; }
1075 | ContinueStatement { $$ = $1; }
1076 | BreakStatement { $$ = $1; }
1077 | ReturnStatement { $$ = $1; }
1078 | WithStatement { $$ = $1; }
1079 | LabelledStatement { $$ = $1; }
1080 | ThrowStatement { $$ = $1; }
1081 | TryStatement { $$ = $1; }
1082 | DebuggerStatement { $$ = $1; }
1086 : LexSetRegExp Statement__ { $$ = $2; }
1087 | ExpressionStatement { $$ = $1; }
1091 : LexSetStatement Statement_ { $$ = $2; }
1095 : FunctionDeclaration { $$ = $1; }
1096 | LexicalDeclaration { $$ = $1; }
1100 : LexSetRegExp Declaration__ { $$ = $2; }
1104 : LexSetStatement Declaration_ { $$ = $2; }
1108 : IterationStatement { $$ = $1; }
1109 | SwitchStatement { $$ = $1; }
1112 /* 12.1 Block {{{ */
1114 : BRACE StatementListOpt "}" { $$ = $2; }
1118 : ";{" StatementListOpt "}" { $$ = CYNew CYBlock($2); }
1122 : StatementListItem StatementListOpt { $1->SetNext($2); $$ = $1; }
1126 : StatementList { $$ = $1; }
1127 | LexSetStatement LexSetRegExp { $$ = NULL; }
1131 : Statement { $$ = $1; }
1132 | Declaration { $$ = $1; }
1136 /* 12.2 Declarations {{{ */
1138 : Identifier { $$ = $1; }
1145 // XXX: BindingPattern
1147 /* 12.2.1 Let and Const Declarations {{{ */
1149 : LetOrConst VariableDeclarationList Terminator { $$ = CYNew CYVar($2); }
1157 /* 12.2.2 Variable Statement {{{ */
1159 : Var_ VariableDeclarationList Terminator { $$ = CYNew CYVar($2); }
1162 VariableDeclarationList_
1163 : "," VariableDeclarationList { $$ = $2; }
1167 VariableDeclarationList
1168 : VariableDeclaration VariableDeclarationList_ { $$ = CYNew CYDeclarations($1, $2); }
1172 : BindingIdentifier InitialiserOpt { $$ = CYNew CYDeclaration($1, $2); }
1173 // XXX: | BindingPattern Initialiser { $$ = CYNew CYDeclaration($1, $2); }
1177 : "=" AssignmentExpression { $$ = $2; }
1181 : Initialiser { $$ = $1; }
1185 /* 12.2.4 Destructuring Binding Patterns {{{ */
1189 : SingleNameBinding { $$ = $1; }
1193 : BindingIdentifier InitialiserOpt { $$ = CYNew CYDeclaration($1, $2); }
1197 /* 12.3 Empty Statement {{{ */
1199 : ";" { $$ = CYNew CYEmpty(); }
1202 /* 12.4 Expression Statement {{{ */
1204 : Expression Terminator { $$ = CYNew CYExpress($1); }
1207 /* 12.5 The if Statement {{{ */
1209 : "else" Statement { $$ = $2; }
1210 | %prec "if" { $$ = NULL; }
1214 : "if" "(" Expression ")" Statement ElseStatementOpt { $$ = CYNew CYIf($3, $5, $6); }
1218 /* 12.6.1 The do-while Statement {{{ */
1220 : "do" Statement "while" "(" Expression ")" TerminatorOpt { $$ = CYNew CYDoWhile($5, $2); }
1223 /* 12.6.2 The while Statement {{{ */
1225 : "while" "(" Expression ")" Statement { $$ = CYNew CYWhile($3, $5); }
1228 /* 12.6.3 The for Statement {{{ */
1230 : "for" "(" LexPushInOn ForStatementInitialiser ";" LexPopIn ExpressionOpt ";" ExpressionOpt ")" Statement { $$ = CYNew CYFor($4, $7, $9, $11); }
1233 ForStatementInitialiser
1234 : ExpressionOpt { $$ = $1; }
1235 | LexSetRegExp Var_ VariableDeclarationList { $$ = CYNew CYForDeclarations($3); }
1238 /* 12.6.4 The for-in and for-of Statements {{{ */
1240 : "for" "(" LexPushInOn ForInStatementInitialiser "!in" LexPopIn Expression ")" Statement { $$ = CYNew CYForIn($4, $7, $9); }
1241 | "for" "(" LexPushInOn ForInStatementInitialiser "of" LexPopIn Expression ")" Statement { $$ = CYNew CYForOf($4, $7, $9); }
1244 ForInStatementInitialiser
1245 : LeftHandSideExpression { $$ = $1; }
1246 | LexSetRegExp Var_ VariableDeclaration { $$ = $3; }
1250 /* 12.7 The continue Statement {{{ */
1252 : "continue" "\n" StrictSemi { $$ = CYNew CYContinue(NULL); }
1253 | "continue" IdentifierOpt Terminator { $$ = CYNew CYContinue($2); }
1256 /* 12.8 The break Statement {{{ */
1258 : "break" "\n" StrictSemi { $$ = CYNew CYBreak(NULL); }
1259 | "break" IdentifierOpt Terminator { $$ = CYNew CYBreak($2); }
1262 /* 12.9 The return Statement {{{ */
1264 : "return" LexSetRegExp "\n" StrictSemi { $$ = CYNew CYReturn(NULL); }
1265 | "return" ExpressionOpt Terminator { $$ = CYNew CYReturn($2); }
1268 /* 12.10 The with Statement {{{ */
1270 : "with" "(" Expression ")" Statement { $$ = CYNew CYWith($3, $5); }
1274 /* 12.11 The switch Statement {{{ */
1276 : "switch" "(" Expression ")" CaseBlock { $$ = CYNew CYSwitch($3, $5); }
1280 : BRACE CaseClausesOpt "}" { $$ = $2; }
1284 : "case" Expression ":" StatementListOpt { $$ = CYNew CYClause($2, $4); }
1288 : CaseClause CaseClausesOpt { $1->SetNext($2); $$ = $1; }
1289 | DefaultClause CaseClausesOpt { $1->SetNext($2); $$ = $1; }
1294 : "default" ":" StatementListOpt { $$ = CYNew CYClause(NULL, $3); }
1297 /* 12.12 Labelled Statements {{{ */
1299 : Identifier ":" Statement { $$ = CYNew CYLabel($1, $3); }
1302 /* 12.13 The throw Statement {{{ */
1304 : "throw" LexSetRegExp "\n" StrictSemi { YYABORT; }
1305 | "throw" Expression Terminator { $$ = CYNew cy::Syntax::Throw($2); }
1308 /* 12.14 The try Statement {{{ */
1310 : "try" Block_ CatchOpt FinallyOpt { $$ = CYNew cy::Syntax::Try($2, $3, $4); }
1314 : "catch" "(" Identifier ")" Block_ { $$ = CYNew cy::Syntax::Catch($3, $5); }
1319 : "finally" Block_ { $$ = CYNew CYFinally($2); }
1323 /* 12.14 The debugger Statement {{{ */
1325 : "debugger" Terminator { $$ = CYNew CYDebugger(); }
1329 /* 13.1 Function Definitions {{{ */
1331 : ";function" Identifier "(" FormalParameterListOpt ")" BRACE FunctionBody "}" { $$ = CYNew CYFunctionStatement($2, $4, $7); }
1335 : "function" IdentifierOpt "(" LexPushInOff FormalParameterListOpt ")" LexPopIn BRACE LexPushInOff FunctionBody "}" LexPopIn { $$ = CYNew CYFunctionExpression($2, $5, $10); }
1338 FormalParameterList_
1339 : "," FormalParameterList { $$ = $2; }
1344 // XXX: : FunctionRestParameter { $$ = $1; }
1345 : FormalParameter FormalParameterList_ { $$ = CYNew CYFunctionParameter($1, $2); }
1348 FormalParameterListOpt
1349 : FormalParameterList
1353 /* XXX: FunctionRestParameter
1354 : "..." BindingIdentifier { $$ = CYNew CYFunctionRestParameter($2); }
1358 : BindingElement { $$ = $1; }
1362 : StatementListOpt { $$ = $1; }
1365 /* 13.2 Arrow Function Definitions {{{ */
1367 : LexSetRegExp ArrowParameters "=>" LexNoBrace ConciseBody { $$ = CYNew CYFatArrow($2, $5); }
1371 : BindingIdentifier { $$ = CYNew CYFunctionParameter(CYNew CYDeclaration($1)); }
1372 | "(" LexPushInOff LexSetRegExp ")" LexPopIn { $$ = NULL; }
1373 | Parenthetical { $$ = $1->expression_->Parameter(); if ($$ == NULL) error(@1, "invalid parameter list"); }
1377 : AssignmentExpression { $$ = CYNew CYReturn($1); }
1378 | LexSetRegExp ";{" LexPushInOff FunctionBody "}" LexPopIn { $$ = $4; }
1381 /* 14 Program {{{ */
1383 : ProgramBodyOpt { driver.program_ = CYNew CYProgram($1); }
1387 : StatementList { $$ = $1; }
1391 : ProgramBody { $$ = $1; }
1392 | LexSetStatement LexSetRegExp { $$ = NULL; }
1397 /* Cycript (C): Type Encoding {{{ */
1399 : IdentifierType { $$ = CYNew CYTypedIdentifier(@1, $1); }
1400 | "(" LexPushInOff "*" TypeQualifierRight ")" LexPopIn { $$ = $4; }
1404 : SuffixedType "[" NumericLiteral "]" { $$ = $1; $$->modifier_ = CYNew CYTypeArrayOf($3, $$->modifier_); }
1405 | "(" LexPushInOff "^" TypeQualifierRight ")" LexPopIn "(" LexPushInOff TypedParameterListOpt ")" LexPopIn { $$ = $4; $$->modifier_ = CYNew CYTypeBlockWith($9, $$->modifier_); }
1406 | TypeSignifier "(" LexPushInOff TypedParameterListOpt ")" LexPopIn { $$ = $1; $$->modifier_ = CYNew CYTypeFunctionWith($4, $$->modifier_); }
1407 | "(" LexPushInOff TypedParameterListOpt ")" LexPopIn { $$ = CYNew CYTypedIdentifier(@1); $$->modifier_ = CYNew CYTypeFunctionWith($3, $$->modifier_); }
1408 | TypeSignifier { $$ = $1; }
1409 | { $$ = CYNew CYTypedIdentifier(@$); }
1413 : "*" TypeQualifierRight { $$ = $2; $$->modifier_ = CYNew CYTypePointerTo($$->modifier_); }
1418 | "const" TypeQualifierLeft { $$ = $2; CYSetLast($$) = CYNew CYTypeConstant(); }
1419 | "volatile" TypeQualifierLeft { $$ = $2; CYSetLast($$) = CYNew CYTypeVolatile(); }
1423 : PrefixedType { $$ = $1; }
1424 | SuffixedType { $$ = $1; }
1425 | "const" TypeQualifierRight { $$ = $2; $$->modifier_ = CYNew CYTypeConstant($$->modifier_); }
1426 | "volatile" TypeQualifierRight { $$ = $2; $$->modifier_ = CYNew CYTypeVolatile($$->modifier_); }
1430 : "int" { $$ = CYNew CYTypeVariable("int"); }
1431 | "unsigned" IntegerTypeOpt { $$ = CYNew CYTypeUnsigned($2); }
1432 | "signed" IntegerTypeOpt { $$ = CYNew CYTypeSigned($2); }
1433 | "long" IntegerTypeOpt { $$ = CYNew CYTypeLong($2); }
1434 | "short" IntegerTypeOpt { $$ = CYNew CYTypeShort($2); }
1438 : IntegerType { $$ = $1; }
1439 | { $$ = CYNew CYTypeVariable("int"); }
1443 : IdentifierType { $$ = CYNew CYTypeVariable($1); }
1444 | IntegerType { $$ = $1; }
1445 | "void" { $$ = CYNew CYTypeVoid(); }
1446 | "char" { $$ = CYNew CYTypeVariable("char"); }
1447 | "signed" "char" { $$ = CYNew CYTypeSigned(CYNew CYTypeVariable("char")); }
1448 | "unsigned" "char" { $$ = CYNew CYTypeUnsigned(CYNew CYTypeVariable("char")); }
1452 : TypeQualifierLeft PrimitiveType TypeQualifierRight { $$ = $3; $$->specifier_ = $2; CYSetLast($1) = $$->modifier_; $$->modifier_ = $1; }
1456 : "@encode" "(" TypedIdentifier ")" { $$ = CYNew CYEncodedType($3); }
1462 /* Cycript (Objective-C): @class Declaration {{{ */
1464 /* XXX: why the hell did I choose MemberExpression? */
1465 : ":" LexSetRegExp MemberExpression { $$ = $3; }
1470 : TypedIdentifier ";" ClassFieldListOpt { $$ = CYNew CYClassField($1, $3); }
1471 | LexSetRegExp { $$ = NULL; }
1475 : BRACE ClassFieldListOpt "}" { $$ = $2; }
1479 : "+" { $$ = false; }
1480 | "-" { $$ = true; }
1484 : "(" LexSetRegExp TypedIdentifier ")" { if ($3->identifier_ != NULL) error($3->location_, "unexpected identifier"); $$ = $3; }
1485 | { $$ = CYNew CYTypedIdentifier(CYNew CYTypeVariable("id")); }
1489 : Word ":" TypeOpt Identifier { $3->identifier_ = $4; $$ = CYNew CYMessageParameter($1, $3); }
1492 MessageParameterList
1493 : MessageParameter MessageParameterListOpt { $1->SetNext($2); $$ = $1; }
1496 MessageParameterListOpt
1497 : MessageParameterList { $$ = $1; }
1502 : MessageParameterList { $$ = $1; }
1503 | Word { $$ = CYNew CYMessageParameter($1, NULL); }
1506 ClassMessageDeclaration
1507 : MessageScope TypeOpt MessageParameters BRACE FunctionBody "}" { $$ = CYNew CYMessage($1, $2, $3, $5); }
1510 ClassMessageDeclarationListOpt
1511 : ClassMessageDeclarationListOpt ClassMessageDeclaration { $2->SetNext($1); $$ = $2; }
1512 | ClassMessageDeclarationListOpt Comment { $$ = $1; }
1517 : Identifier { $$ = $1; }
1518 | "(" AssignmentExpression ")" { $$ = $2; }
1522 : ClassName { $$ = $1; }
1526 // XXX: this should be AssignmentExpressionNoRight
1528 : ShiftExpression ClassProtocolsOpt { $$ = CYNew CYProtocol($1, $2); }
1532 : "," ClassProtocols { $$ = $2; }
1536 ClassProtocolListOpt
1537 : "<" ClassProtocols ">" { $$ = $2; }
1542 : "@implementation" LexPushInOff ClassNameOpt ClassSuperOpt ClassProtocolListOpt ClassFields ClassMessageDeclarationListOpt "@end" LexPopIn { $$ = CYNew CYClassExpression($3, $4, $5, $6, $7); }
1546 : ";@implementation" ClassName ClassSuperOpt ClassProtocolListOpt ClassFields ClassMessageDeclarationListOpt "@end" { $$ = CYNew CYClassStatement($2, $3, $4, $5, $6); }
1554 : ";@implementation" ClassName CategoryName ClassMessageDeclarationListOpt "@end" { $$ = CYNew CYCategory($2, $4); }
1558 : ClassExpression { $$ = $1; }
1562 : ClassStatement { $$ = $1; }
1563 | CategoryStatement { $$ = $1; }
1566 /* Cycript (Objective-C): Send Message {{{ */
1568 : "," AssignmentExpression VariadicCall { $$ = CYNew CYArgument(NULL, $2, $3); }
1573 : WordOpt { driver.contexts_.back().words_.push_back($1); } { $$ = $1; }
1574 | AutoComplete { driver.mode_ = CYDriver::AutoMessage; YYACCEPT; }
1578 : SelectorCall { $$ = $1; }
1579 | VariadicCall { $$ = $1; }
1583 : SelectorWordOpt ":" AssignmentExpression SelectorCall_ { $$ = CYNew CYArgument($1 ?: CYNew CYBlank(), $3, $4); }
1587 : SelectorCall { $$ = $1; }
1588 | Word { $$ = CYNew CYArgument($1, NULL); }
1592 : "[" LexPushInOff AssignmentExpression { driver.contexts_.push_back($3); } SelectorList "]" LexPopIn { driver.contexts_.pop_back(); } { $$ = CYNew CYSendDirect($3, $5); }
1593 | "[" LexPushInOff LexSetRegExp "super" { driver.context_ = NULL; } SelectorList "]" LexPopIn { $$ = CYNew CYSendSuper($6); }
1597 : WordOpt ":" SelectorExpressionOpt { $$ = CYNew CYSelectorPart($1, true, $3); }
1601 : SelectorExpression_ { $$ = $1; }
1602 | Word { $$ = CYNew CYSelectorPart($1, false, NULL); }
1605 SelectorExpressionOpt
1606 : SelectorExpression_ { $$ = $1; }
1611 : MessageExpression { $$ = $1; }
1612 | "@selector" "(" LexPushInOff SelectorExpression ")" LexPopIn { $$ = CYNew CYSelector($4); }
1617 /* Cycript: @import Directive {{{ */
1619 : Module "." Word { $$ = CYNew CYModule($3, $1); }
1620 | Word { $$ = CYNew CYModule($1); }
1624 : "@import" Module { $$ = CYNew CYImport($2); }
1629 /* Cycript (Objective-C): Boxed Expressions {{{ */
1631 : NullLiteral { $$ = $1; }
1632 | BooleanLiteral { $$ = $1; }
1633 | NumericLiteral { $$ = $1; }
1634 | StringLiteral { $$ = $1; }
1635 | ArrayLiteral { $$ = $1; }
1636 | ObjectLiteral { $$ = $1; }
1637 | Parenthetical { $$ = $1; }
1638 | "YES" { $$ = CYNew CYTrue(); }
1639 | "NO" { $$ = CYNew CYFalse(); }
1643 : "@" BoxableExpression { $$ = CYNew CYBox($2); }
1646 /* Cycript (Objective-C): Block Expressions {{{ */
1648 : "^" TypedIdentifier { if ($2->identifier_ != NULL) error($2->location_, "unexpected identifier"); } BRACE LexPushInOff FunctionBody "}" LexPopIn { if (CYTypeFunctionWith *function = $2->Function()) $$ = CYNew CYObjCBlock($2, function->parameters_, $6); else error($2->location_, "expected parameters"); }
1651 /* Cycript (Objective-C): Instance Literals {{{ */
1653 : "#" NumericLiteral { $$ = CYNew CYInstanceLiteral($2); }
1659 /* Cycript (C): Pointer Indirection/Addressing {{{ */
1660 LeftHandSideExpression
1661 : LexSetRegExp "*" UnaryExpression { $$ = CYNew CYIndirect($3); }
1665 : "&" UnaryExpression { $$ = CYNew CYAddressOf($2); }
1669 : "->" "[" Expression "]" { $$ = CYNew CYIndirectMember(NULL, $3); }
1670 | "->" IdentifierName { $$ = CYNew CYIndirectMember(NULL, CYNew CYString($2)); }
1671 | "->" AutoComplete { driver.mode_ = CYDriver::AutoIndirect; YYACCEPT; }
1674 /* Cycript (C): auto Compatibility {{{ */
1679 /* Cycript (C): Lambda Expressions {{{ */
1681 : "," TypedParameterList { $$ = $2; }
1686 : TypedIdentifier TypedParameterList_ { $$ = CYNew CYTypedParameter($1, $2); }
1689 TypedParameterListOpt
1690 : TypedParameterList { $$ = $1; }
1695 : "[" LexPushInOff LexSetRegExp "&" LexSetRegExp "]" LexPopIn "(" LexPushInOff TypedParameterListOpt ")" LexPopIn "->" TypedIdentifier BRACE LexPushInOff FunctionBody "}" LexPopIn { $$ = CYNew CYLambda($14, $10, $17); }
1698 /* Cycript (C): Type Definitions {{{ */
1700 : "typedef" TypedIdentifier { if ($2->identifier_ == NULL) error($2->location_, "expected identifier"); } Terminator { $$ = CYNew CYTypeDefinition($2); }
1703 /* Cycript (C): extern "C" {{{ */
1705 : "extern" StringLiteral { if (strcmp($2->Value(), "C") != 0) error(@2, "unknown extern binding"); } TypedIdentifier { if ($4->identifier_ == NULL) error($4->location_, "expected identifier"); } Terminator { $$ = CYNew CYExternal($2, $4); }
1711 /* YUI: Documentation Comments {{{ */
1713 : Comment { $$ = $1; }
1718 /* Lexer State {{{ */
1720 : { driver.PushCondition(CYDriver::RegExpCondition); }
1724 : { driver.PushCondition(CYDriver::XMLContentCondition); }
1728 : { driver.PushCondition(CYDriver::XMLTagCondition); }
1732 : { driver.PopCondition(); }
1736 : { driver.SetCondition(CYDriver::XMLContentCondition); }
1740 : { driver.SetCondition(CYDriver::XMLTagCondition); }
1743 /* Virtual Tokens {{{ */
1750 /* 8.1 Context Keywords {{{ */
1752 : "namespace" { $$ = $1; }
1753 | "xml" { $$ = $1; }
1756 /* 8.3 XML Initialiser Input Elements {{{ */
1758 : XMLComment { $$ = $1; }
1759 | XMLCDATA { $$ = $1; }
1760 | XMLPI { $$ = $1; }
1764 /* 11.1 Primary Expressions {{{ */
1766 : PropertyIdentifier { $$ = CYNew CYPropertyVariable($1); }
1767 | XMLInitialiser { $$ = $1; }
1768 | XMLListInitialiser { $$ = $1; }
1772 : AttributeIdentifier { $$ = $1; }
1773 | QualifiedIdentifier { $$ = $1; }
1774 | WildcardIdentifier { $$ = $1; }
1777 /* 11.1.1 Attribute Identifiers {{{ */
1779 : "@" QualifiedIdentifier_ { $$ = CYNew CYAttribute($2); }
1783 : PropertySelector { $$ = $1; }
1784 | "[" LexPushInOff Expression "]" LexPopIn { $$ = CYNew CYSelector($3); }
1788 : Identifier { $$ = CYNew CYSelector($1); }
1789 | WildcardIdentifier { $$ = $1; }
1792 /* 11.1.2 Qualified Identifiers {{{ */
1793 QualifiedIdentifier_
1794 : PropertySelector_ { $$ = CYNew CYQualified(NULL, $1); }
1795 | QualifiedIdentifier { $$ = $1; }
1799 : PropertySelector "::" PropertySelector_ { $$ = CYNew CYQualified($1, $3); }
1802 /* 11.1.3 Wildcard Identifiers {{{ */
1804 : "*" { $$ = CYNew CYWildcard(); }
1807 /* 11.1.4 XML Initialiser {{{ */
1809 : XMLMarkup { $$ = $1; }
1810 | XMLElement { $$ = $1; }
1814 : "<" LexPushInOff XMLTagContent LexPop "/>" LexPopIn
1815 | "<" LexPushInOff XMLTagContent ">" LexSetXMLContent XMLElementContentOpt "</" LexSetXMLTag XMLTagName XMLWhitespaceOpt LexPop ">" LexPopIn
1819 : LexPushXMLTag XMLTagName XMLAttributes
1823 : BRACE LexPushRegExp Expression LexPop "}"
1832 : XMLAttributes_ XMLAttribute
1837 : XMLAttributes_ XMLWhitespace XMLExpression XMLWhitespaceOpt
1838 | XMLAttributes_ XMLWhitespaceOpt
1847 : XMLWhitespace XMLName XMLWhitespaceOpt "=" XMLWhitespaceOpt XMLAttributeValue_
1851 : XMLExpression XMLElementContentOpt
1852 | XMLMarkup XMLElementContentOpt
1853 | XMLText XMLElementContentOpt
1854 | XMLElement XMLElementContentOpt
1857 XMLElementContentOpt
1862 /* 11.1.5 XMLList Initialiser {{{ */
1864 : "<>" LexPushInOff LexPushXMLContent XMLElementContent LexPop "</>" LexPopIn { $$ = CYNew CYXMLList($4); }
1868 /* 11.2 Left-Hand-Side Expressions {{{ */
1870 : Identifier { $$ = $1; }
1871 | PropertyIdentifier { $$ = $1; }
1875 : "." PropertyIdentifier { $$ = CYNew CYPropertyMember(NULL, $2); }
1876 | ".." PropertyIdentifier_ { $$ = CYNew CYDescendantMember(NULL, $2); }
1877 | "." "(" Expression ")" { $$ = CYNew CYFilteringPredicate(NULL, $3); }
1880 /* 12.1 The default xml namespace Statement {{{ */
1881 /* XXX: DefaultXMLNamespaceStatement
1882 : "default" "xml" "namespace" "=" Expression Terminator { $$ = CYNew CYDefaultXMLNamespace($5); }
1886 : DefaultXMLNamespaceStatement { $$ = $1; }
1891 /* JavaScript 1.7: Array Comprehensions {{{ */
1893 : AssignmentExpression ComprehensionFor ComprehensionTail { $$ = CYNew CYArrayComprehension($1, $2->Modify($3)); }
1897 : "for" "(" Binding "in" Expression ")" { $$ = CYNew CYForInComprehension($3, $5); }
1898 | "for" "each" "(" Binding "in" Expression ")" { $$ = CYNew CYForOfComprehension($4, $6); }
1901 /* JavaScript 1.7: for each {{{ */
1903 : "for" "each" "(" LexPushInOn ForInStatementInitialiser "!in" LexPopIn Expression ")" Statement { $$ = CYNew CYForOf($5, $8, $10); }
1906 /* JavaScript 1.7: let Statements {{{ */
1908 : "let" "(" VariableDeclarationList ")" Statement { $$ = CYNew CYLetStatement($3, $5); }
1916 /* JavaScript FTW: Ruby Blocks {{{ */
1917 RubyProcParameterList_
1918 : "," RubyProcParameterList { $$ = $2; }
1922 RubyProcParameterList
1923 : Identifier RubyProcParameterList_ { $$ = CYNew CYFunctionParameter(CYNew CYDeclaration($1), $2); }
1928 : "|" RubyProcParameterList "|" { $$ = $2; }
1929 | "||" { $$ = NULL; }
1932 RubyProcParametersOpt
1933 : RubyProcParameters
1938 : "{" RubyProcParametersOpt StatementListOpt "}" { $$ = CYNew CYRubyProc($2, $3); }
1942 : "{" LexPushInOff RubyProcParameters StatementListOpt "}" LexPopIn { $$ = CYNew CYRubyProc($3, $4); }
1946 : CallExpression_ RubyProcExpression { $$ = CYNew CYRubyBlock($1, $2); }