1 /* Cycript - Remove Execution Server and Disassembler
2 * Copyright (C) 2009 Jay Freeman (saurik)
5 /* Modified BSD License {{{ */
7 * Redistribution and use in source and binary
8 * forms, with or without modification, are permitted
9 * provided that the following conditions are met:
11 * 1. Redistributions of source code must retain the
12 * above copyright notice, this list of conditions
13 * and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the
15 * above copyright notice, this list of conditions
16 * and the following disclaimer in the documentation
17 * and/or other materials provided with the
19 * 3. The name of the author may not be used to endorse
20 * or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS''
24 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
25 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
26 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE
28 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
29 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
30 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
31 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
34 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
35 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
36 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
41 #include "Cycript.tab.hh"
42 #define scanner driver.scanner_
43 #define YYSTACKEXPANDABLE 1
50 #include "ObjectiveC.hpp"
59 CYDriver::Condition condition_;
61 CYArgument *argument_;
62 CYAssignment *assignment_;
66 CYClassName *className_;
67 CYComprehension *comprehension_;
68 CYCompound *compound_;
69 CYDeclaration *declaration_;
70 CYDeclarations *declarations_;
72 CYExpression *expression_;
76 CYForInitialiser *for_;
77 CYForInInitialiser *forin_;
78 CYFunctionParameter *functionParameter_;
79 CYIdentifier *identifier_;
86 CYProperty *property_;
87 CYPropertyName *propertyName_;
88 CYStatement *statement_;
96 CYMessageParameter *messageParameter_;
97 CYSelectorPart *selector_;
105 int cylex(YYSTYPE *lvalp, cy::location *llocp, void *scanner);
114 @$.begin.filename = @$.end.filename = &driver.filename_;
124 %parse-param { CYDriver &driver }
125 %lex-param { void *scanner }
130 %token AmpersandAmpersand "&&"
131 %token AmpersandEqual "&="
133 %token CarrotEqual "^="
135 %token EqualEqual "=="
136 %token EqualEqualEqual "==="
137 %token Exclamation "!"
138 %token ExclamationEqual "!="
139 %token ExclamationEqualEqual "!=="
141 %token HyphenEqual "-="
142 %token HyphenHyphen "--"
143 %token HyphenHyphen_ "\n--"
144 %token HyphenRight "->"
146 %token LeftEqual "<="
148 %token LeftLeftEqual "<<="
150 %token PercentEqual "%="
153 %token PipeEqual "|="
156 %token PlusEqual "+="
158 %token PlusPlus_ "\n++"
160 %token RightEqual ">="
161 %token RightRight ">>"
162 %token RightRightEqual ">>="
163 %token RightRightRight ">>>"
164 %token RightRightRightEqual ">>>="
166 %token SlashEqual "/="
168 %token StarEqual "*="
178 %token CloseParen ")"
181 %token CloseBrace "}"
183 %token OpenBracket "["
184 %token CloseBracket "]"
186 %token AtClass "@class"
187 %token AtSelector "@selector"
190 %token <false_> False "false"
191 %token <null_> Null "null"
192 %token <true_> True "true"
194 // ES3/ES5/WIE/JSC Reserved
195 %token <word_> Break "break"
196 %token <word_> Case "case"
197 %token <word_> Catch "catch"
198 %token <word_> Continue "continue"
199 %token <word_> Default "default"
200 %token <word_> Delete "delete"
201 %token <word_> Do "do"
202 %token <word_> Else "else"
203 %token <word_> Finally "finally"
204 %token <word_> For "for"
205 %token <word_> Function "function"
206 %token <word_> If "if"
207 %token <word_> In "in"
208 %token <word_> InstanceOf "instanceof"
209 %token <word_> New "new"
210 %token <word_> Return "return"
211 %token <word_> Switch "switch"
212 %token <this_> This "this"
213 %token <word_> Throw "throw"
214 %token <word_> Try "try"
215 %token <word_> TypeOf "typeof"
216 %token <word_> Var "var"
217 %token <word_> Void "void"
218 %token <word_> While "while"
219 %token <word_> With "with"
221 // ES3/IE6 Future, ES5/JSC Reserved
222 %token <word_> Debugger "debugger"
224 // ES3/ES5/IE6 Future, JSC Reserved
225 %token <word_> Const "const"
227 // ES3/ES5/IE6/JSC Future
228 %token <word_> Class "class"
229 %token <word_> Enum "enum"
230 %token <word_> Export "export"
231 %token <word_> Extends "extends"
232 %token <word_> Import "import"
233 %token <word_> Super "super"
235 // ES3 Future, ES5 Strict Future
236 %token <identifier_> Implements "implements"
237 %token <identifier_> Interface "interface"
238 %token <identifier_> Package "package"
239 %token <identifier_> Private "private"
240 %token <identifier_> Protected "protected"
241 %token <identifier_> Public "public"
242 %token <identifier_> Static "static"
245 %token <identifier_> Abstract "abstract"
246 %token <identifier_> Boolean "boolean"
247 %token <identifier_> Byte "byte"
248 %token <identifier_> Char "char"
249 %token <identifier_> Double "double"
250 %token <identifier_> Final "final"
251 %token <identifier_> Float "float"
252 %token <identifier_> Goto "goto"
253 %token <identifier_> Int "int"
254 %token <identifier_> Long "long"
255 %token <identifier_> Native "native"
256 %token <identifier_> Short "short"
257 %token <identifier_> Synchronized "synchronized"
258 %token <identifier_> Throws "throws"
259 %token <identifier_> Transient "transient"
260 %token <identifier_> Volatile "volatile"
263 %token <identifier_> Let "let"
264 %token <identifier_> Yield "yield"
267 %token <identifier_> Each "each"
269 %token <identifier_> Identifier_
270 %token <number_> NumericLiteral
271 %token <string_> StringLiteral
272 %token <literal_> RegularExpressionLiteral
274 %type <expression_> AdditiveExpression
275 %type <expression_> AdditiveExpressionNoBF
276 %type <argument_> ArgumentList
277 %type <argument_> ArgumentList_
278 %type <argument_> ArgumentListOpt
279 %type <argument_> Arguments
280 %type <literal_> ArrayLiteral
281 %type <expression_> AssigneeExpression
282 %type <expression_> AssigneeExpression_
283 %type <expression_> AssigneeExpressionNoBF
284 %type <expression_> AssignmentExpression
285 %type <assignment_> AssignmentExpression_
286 %type <expression_> AssignmentExpressionNoBF
287 %type <expression_> AssignmentExpressionNoIn
288 %type <expression_> BitwiseANDExpression
289 %type <expression_> BitwiseANDExpressionNoBF
290 %type <expression_> BitwiseANDExpressionNoIn
291 %type <statement_> Block
292 %type <statement_> Block_
293 %type <boolean_> BooleanLiteral
294 %type <expression_> BitwiseORExpression
295 %type <expression_> BitwiseORExpressionNoBF
296 %type <expression_> BitwiseORExpressionNoIn
297 %type <expression_> BitwiseXORExpression
298 %type <expression_> BitwiseXORExpressionNoBF
299 %type <expression_> BitwiseXORExpressionNoIn
300 %type <statement_> BreakStatement
301 %type <expression_> CallExpression
302 %type <expression_> CallExpressionNoBF
303 %type <clause_> CaseBlock
304 %type <clause_> CaseClause
305 %type <clause_> CaseClausesOpt
306 %type <catch_> CatchOpt
307 %type <statement_> CategoryStatement
308 %type <expression_> ClassExpression
309 %type <message_> ClassMessageDeclaration
310 %type <message_> ClassMessageDeclarationListOpt
311 %type <className_> ClassName
312 %type <className_> ClassNameOpt
313 %type <statement_> ClassStatement
314 %type <expression_> ClassSuperOpt
315 %type <field_> ClassFieldList
316 %type <comprehension_> ComprehensionList
317 %type <comprehension_> ComprehensionListOpt
318 %type <expression_> ConditionalExpression
319 %type <expression_> ConditionalExpressionNoBF
320 %type <expression_> ConditionalExpressionNoIn
321 %type <statement_> ContinueStatement
322 %type <clause_> DefaultClause
323 %type <statement_> DoWhileStatement
324 %type <expression_> Element
325 %type <expression_> ElementOpt
326 %type <element_> ElementList
327 %type <element_> ElementListOpt
328 %type <statement_> ElseStatementOpt
329 %type <statement_> EmptyStatement
330 %type <expression_> EqualityExpression
331 %type <expression_> EqualityExpressionNoBF
332 %type <expression_> EqualityExpressionNoIn
333 %type <expression_> Expression
334 %type <expression_> ExpressionOpt
335 %type <compound_> Expression_
336 %type <expression_> ExpressionNoBF
337 %type <expression_> ExpressionNoIn
338 %type <compound_> ExpressionNoIn_
339 %type <expression_> ExpressionNoInOpt
340 %type <statement_> ExpressionStatement
341 %type <finally_> FinallyOpt
342 %type <comprehension_> ForComprehension
343 %type <statement_> ForStatement
344 %type <for_> ForStatementInitialiser
345 %type <statement_> ForInStatement
346 %type <forin_> ForInStatementInitialiser
347 %type <functionParameter_> FormalParameterList
348 %type <functionParameter_> FormalParameterList_
349 %type <statement_> FunctionBody
350 %type <statement_> FunctionDeclaration
351 %type <expression_> FunctionExpression
352 %type <identifier_> Identifier
353 %type <identifier_> IdentifierOpt
354 %type <comprehension_> IfComprehension
355 %type <statement_> IfStatement
356 %type <expression_> Initialiser
357 %type <expression_> InitialiserOpt
358 %type <expression_> InitialiserNoIn
359 %type <expression_> InitialiserNoInOpt
360 %type <statement_> IterationStatement
361 %type <statement_> LabelledStatement
362 %type <expression_> LeftHandSideExpression
363 %type <expression_> LeftHandSideExpressionNoBF
364 //%type <statement_> LetStatement
365 %type <literal_> Literal
366 %type <expression_> LogicalANDExpression
367 %type <expression_> LogicalANDExpressionNoBF
368 %type <expression_> LogicalANDExpressionNoIn
369 %type <expression_> LogicalORExpression
370 %type <expression_> LogicalORExpressionNoBF
371 %type <expression_> LogicalORExpressionNoIn
372 %type <member_> MemberAccess
373 %type <expression_> MemberExpression
374 %type <expression_> MemberExpression_
375 %type <expression_> MemberExpressionNoBF
376 %type <messageParameter_> MessageParameter
377 %type <messageParameter_> MessageParameters
378 %type <messageParameter_> MessageParameterList
379 %type <messageParameter_> MessageParameterListOpt
380 %type <bool_> MessageScope
381 %type <expression_> MultiplicativeExpression
382 %type <expression_> MultiplicativeExpressionNoBF
383 %type <expression_> NewExpression
384 %type <expression_> NewExpression_
385 %type <expression_> NewExpressionNoBF
386 %type <null_> NullLiteral
387 %type <literal_> ObjectLiteral
388 %type <expression_> PostfixExpression
389 %type <expression_> PostfixExpressionNoBF
390 %type <expression_> PrimaryExpression
391 %type <expression_> PrimaryExpression_
392 %type <expression_> PrimaryExpressionNoBF
393 %type <statement_> Program
394 %type <propertyName_> PropertyName
395 %type <property_> PropertyNameAndValueList
396 %type <property_> PropertyNameAndValueList_
397 %type <property_> PropertyNameAndValueListOpt
398 %type <literal_> RegularExpressionLiteral_
399 %type <condition_> RegularExpressionToken
400 %type <expression_> RelationalExpression
401 %type <infix_> RelationalExpression_
402 %type <expression_> RelationalExpressionNoBF
403 %type <expression_> RelationalExpressionNoIn
404 %type <infix_> RelationalExpressionNoIn_
405 %type <statement_> ReturnStatement
406 %type <selector_> SelectorExpression
407 %type <selector_> SelectorExpression_
408 %type <selector_> SelectorExpressionOpt
409 %type <expression_> ShiftExpression
410 %type <expression_> ShiftExpressionNoBF
411 %type <statement_> SourceElement
412 %type <statement_> SourceElements
413 %type <statement_> Statement
414 %type <statement_> Statement_
415 %type <statement_> StatementList
416 %type <statement_> StatementListOpt
417 %type <statement_> SwitchStatement
418 %type <statement_> ThrowStatement
419 %type <statement_> TryStatement
420 %type <expression_> TypeOpt
421 %type <expression_> UnaryExpression
422 %type <expression_> UnaryExpression_
423 %type <expression_> UnaryExpressionNoBF
424 %type <declaration_> VariableDeclaration
425 %type <declaration_> VariableDeclarationNoIn
426 %type <declarations_> VariableDeclarationList
427 %type <declarations_> VariableDeclarationList_
428 %type <declarations_> VariableDeclarationListNoIn
429 %type <declarations_> VariableDeclarationListNoIn_
430 %type <statement_> VariableStatement
431 %type <statement_> WhileStatement
432 %type <statement_> WithStatement
434 %type <word_> WordOpt
436 %type <expression_> MessageExpression
437 %type <argument_> SelectorCall
438 %type <argument_> SelectorCall_
439 %type <argument_> SelectorList
440 %type <argument_> VariadicCall
444 %left "<<" ">>" ">>>"
445 %left "<" ">" "<=" ">=" "instanceof" "in"
446 %left "==" "!=" "===" "!=="
453 %right "=" "*=" "/=" "%=" "+=" "-=" "<<=" ">>=" ">>>=" "&=" "^=" "|="
463 : { driver.Warning(yylloc, "warning, automatic semi-colon insertion required"); }
473 | error { yyerrok; driver.errors_.pop_back(); } StrictSemi
478 | error { if (yychar != 0 && yychar != cy::parser::token::CloseBrace && !yylval.newline_) YYABORT; else { yyerrok; driver.errors_.pop_back(); } } StrictSemi
497 : Identifier { $$ = $1; }
498 | "break" NewLineOpt { $$ = $1; }
499 | "case" { $$ = $1; }
500 | "catch" { $$ = $1; }
501 | "class" { $$ = $1; }
502 | "const" { $$ = $1; }
503 | "continue" NewLineOpt { $$ = $1; }
504 | "debugger" { $$ = $1; }
505 | "default" { $$ = $1; }
506 | "delete" { $$ = $1; }
508 | "else" { $$ = $1; }
509 | "enum" { $$ = $1; }
510 | "export" { $$ = $1; }
511 | "extends" { $$ = $1; }
512 | "false" { $$ = $1; }
513 | "finally" { $$ = $1; }
515 | "function" { $$ = $1; }
517 | "import" { $$ = $1; }
518 /* XXX: | "in" { $$ = $1; } */
519 /* XXX: | "instanceof" { $$ = $1; } */
521 | "null" { $$ = $1; }
522 | "return" NewLineOpt { $$ = $1; }
523 | "super" { $$ = $1; }
524 | "switch" { $$ = $1; }
525 | "this" { $$ = $1; }
526 | "throw" NewLineOpt { $$ = $1; }
527 | "true" { $$ = $1; }
529 | "typeof" { $$ = $1; }
531 | "void" { $$ = $1; }
532 | "while" { $$ = $1; }
533 | "with" { $$ = $1; }
537 : Identifier_ { $$ = $1; }
539 | "implements" { $$ = $1; }
540 | "interface" { $$ = $1; }
541 | "package" { $$ = $1; }
542 | "private" { $$ = $1; }
543 | "protected" { $$ = $1; }
544 | "public" { $$ = $1; }
545 | "static" { $$ = $1; }
547 | "abstract" { $$ = $1; }
548 | "boolean" { $$ = $1; }
549 | "byte" { $$ = $1; }
550 | "char" { $$ = $1; }
551 | "double" { $$ = $1; }
552 | "final" { $$ = $1; }
553 | "float" { $$ = $1; }
554 | "goto" { $$ = $1; }
556 | "long" { $$ = $1; }
557 | "native" { $$ = $1; }
558 | "short" { $$ = $1; }
559 | "synchronized" { $$ = $1; }
560 | "throws" { $$ = $1; }
561 | "transient" { $$ = $1; }
562 | "volatile" { $$ = $1; }
565 | "yield" { $$ = $1; }
567 | "each" { $$ = $1; }
571 : Identifier { $$ = $1; }
575 RegularExpressionToken
576 : "/" { $$ = CYDriver::RegExStart; }
577 | "/=" { $$ = CYDriver::RegExRest; }
580 RegularExpressionLiteral_
581 : RegularExpressionToken { driver.SetCondition($1); } RegularExpressionLiteral { $$ = $3; }
585 : NullLiteral { $$ = $1; }
586 | BooleanLiteral { $$ = $1; }
587 | NumericLiteral { $$ = $1; }
588 | StringLiteral { $$ = $1; }
589 | RegularExpressionLiteral_ { $$ = $1; }
593 : "null" { $$ = $1; }
597 : "true" { $$ = $1; }
598 | "false" { $$ = $1; }
601 /* 11.1 Primary Expressions {{{ */
603 : "this" { $$ = $1; }
604 | Identifier { $$ = new(driver.pool_) CYVariable($1); }
605 | Literal { $$ = $1; }
606 | ArrayLiteral { $$ = $1; }
607 | "(" Expression ")" { $$ = $2; }
611 : ObjectLiteral { $$ = $1; }
612 | PrimaryExpression_ { $$ = $1; }
615 PrimaryExpressionNoBF
616 : PrimaryExpression_ { $$ = $1; }
619 /* 11.1.4 Array Initialiser {{{ */
621 : "[" ElementListOpt "]" { $$ = new(driver.pool_) CYArray($2); }
625 : AssignmentExpression { $$ = $1; }
629 : Element { $$ = $1; }
634 : ElementList { $$ = $1; }
639 : ElementOpt "," ElementListOpt { $$ = new(driver.pool_) CYElement($1, $3); }
640 | Element { $$ = new(driver.pool_) CYElement($1, NULL); }
643 /* 11.1.5 Object Initialiser {{{ */
645 : "{" PropertyNameAndValueListOpt "}" { $$ = new(driver.pool_) CYObject($2); }
648 PropertyNameAndValueList_
649 : "," PropertyNameAndValueList { $$ = $2; }
653 PropertyNameAndValueListOpt
654 : PropertyNameAndValueList { $$ = $1; }
658 PropertyNameAndValueList
659 : PropertyName ":" AssignmentExpression PropertyNameAndValueList_ { $$ = new(driver.pool_) CYProperty($1, $3, $4); }
663 : Identifier { $$ = $1; }
664 | StringLiteral { $$ = $1; }
665 | NumericLiteral { $$ = $1; }
669 /* 11.2 Left-Hand-Side Expressions {{{ */
671 : "new" MemberExpression Arguments { $$ = new(driver.pool_) CYNew($2, $3); }
675 : "[" Expression "]" { $$ = new(driver.pool_) CYDirectMember(NULL, $2); }
676 | "." Identifier { $$ = new(driver.pool_) CYDirectMember(NULL, new(driver.pool_) CYString($2)); }
680 : PrimaryExpression { $$ = $1; }
681 | FunctionExpression { $$ = $1; }
682 | MemberExpression MemberAccess { $2->SetLeft($1); $$ = $2; }
683 | MemberExpression_ { $$ = $1; }
687 : PrimaryExpressionNoBF { $$ = $1; }
688 | MemberExpressionNoBF MemberAccess { $2->SetLeft($1); $$ = $2; }
689 | MemberExpression_ { $$ = $1; }
693 : "new" NewExpression { $$ = new(driver.pool_) CYNew($2, NULL); }
697 : MemberExpression { $$ = $1; }
698 | NewExpression_ { $$ = $1; }
702 : MemberExpressionNoBF { $$ = $1; }
703 | NewExpression_ { $$ = $1; }
707 : MemberExpression Arguments { $$ = new(driver.pool_) CYCall($1, $2); }
708 | CallExpression Arguments { $$ = new(driver.pool_) CYCall($1, $2); }
709 | CallExpression MemberAccess { $2->SetLeft($1); $$ = $2; }
713 : MemberExpressionNoBF Arguments { $$ = new(driver.pool_) CYCall($1, $2); }
714 | CallExpressionNoBF Arguments { $$ = new(driver.pool_) CYCall($1, $2); }
715 | CallExpressionNoBF MemberAccess { $2->SetLeft($1); $$ = $2; }
719 : "," ArgumentList { $$ = $2; }
724 : ArgumentList { $$ = $1; }
729 : AssignmentExpression ArgumentList_ { $$ = new(driver.pool_) CYArgument(NULL, $1, $2); }
733 : "(" ArgumentListOpt ")" { $$ = $2; }
736 LeftHandSideExpression
737 : NewExpression { $$ = $1; }
738 | CallExpression { $$ = $1; }
741 LeftHandSideExpressionNoBF
742 : NewExpressionNoBF { $$ = $1; }
743 | CallExpressionNoBF { $$ = $1; }
746 /* 11.3 Postfix Expressions {{{ */
748 : AssigneeExpression { $$ = $1; }
749 | LeftHandSideExpression "++" { $$ = new(driver.pool_) CYPostIncrement($1); }
750 | LeftHandSideExpression "--" { $$ = new(driver.pool_) CYPostDecrement($1); }
753 PostfixExpressionNoBF
754 : AssigneeExpressionNoBF { $$ = $1; }
755 | LeftHandSideExpressionNoBF "++" { $$ = new(driver.pool_) CYPostIncrement($1); }
756 | LeftHandSideExpressionNoBF "--" { $$ = new(driver.pool_) CYPostDecrement($1); }
759 /* 11.4 Unary Operators {{{ */
761 : "delete" UnaryExpression { $$ = new(driver.pool_) CYDelete($2); }
762 | "void" UnaryExpression { $$ = new(driver.pool_) CYVoid($2); }
763 | "typeof" UnaryExpression { $$ = new(driver.pool_) CYTypeOf($2); }
764 | "++" UnaryExpression { $$ = new(driver.pool_) CYPreIncrement($2); }
765 | "\n++" UnaryExpression { $$ = new(driver.pool_) CYPreIncrement($2); }
766 | "--" UnaryExpression { $$ = new(driver.pool_) CYPreDecrement($2); }
767 | "\n--" UnaryExpression { $$ = new(driver.pool_) CYPreDecrement($2); }
768 | "+" UnaryExpression { $$ = new(driver.pool_) CYAffirm($2); }
769 | "-" UnaryExpression { $$ = new(driver.pool_) CYNegate($2); }
770 | "~" UnaryExpression { $$ = new(driver.pool_) CYBitwiseNot($2); }
771 | "!" UnaryExpression { $$ = new(driver.pool_) CYLogicalNot($2); }
775 : PostfixExpression { $$ = $1; }
776 | UnaryExpression_ { $$ = $1; }
780 : PostfixExpressionNoBF { $$ = $1; }
781 | UnaryExpression_ { $$ = $1; }
784 /* 11.5 Multiplicative Operators {{{ */
785 MultiplicativeExpression
786 : UnaryExpression { $$ = $1; }
787 | MultiplicativeExpression "*" UnaryExpression { $$ = new(driver.pool_) CYMultiply($1, $3); }
788 | MultiplicativeExpression "/" UnaryExpression { $$ = new(driver.pool_) CYDivide($1, $3); }
789 | MultiplicativeExpression "%" UnaryExpression { $$ = new(driver.pool_) CYModulus($1, $3); }
792 MultiplicativeExpressionNoBF
793 : UnaryExpressionNoBF { $$ = $1; }
794 | MultiplicativeExpressionNoBF "*" UnaryExpression { $$ = new(driver.pool_) CYMultiply($1, $3); }
795 | MultiplicativeExpressionNoBF "/" UnaryExpression { $$ = new(driver.pool_) CYDivide($1, $3); }
796 | MultiplicativeExpressionNoBF "%" UnaryExpression { $$ = new(driver.pool_) CYModulus($1, $3); }
799 /* 11.6 Additive Operators {{{ */
801 : MultiplicativeExpression { $$ = $1; }
802 | AdditiveExpression "+" MultiplicativeExpression { $$ = new(driver.pool_) CYAdd($1, $3); }
803 | AdditiveExpression "-" MultiplicativeExpression { $$ = new(driver.pool_) CYSubtract($1, $3); }
806 AdditiveExpressionNoBF
807 : MultiplicativeExpressionNoBF { $$ = $1; }
808 | AdditiveExpressionNoBF "+" MultiplicativeExpression { $$ = new(driver.pool_) CYAdd($1, $3); }
809 | AdditiveExpressionNoBF "-" MultiplicativeExpression { $$ = new(driver.pool_) CYSubtract($1, $3); }
812 /* 11.7 Bitwise Shift Operators {{{ */
814 : AdditiveExpression { $$ = $1; }
815 | ShiftExpression "<<" AdditiveExpression { $$ = new(driver.pool_) CYShiftLeft($1, $3); }
816 | ShiftExpression ">>" AdditiveExpression { $$ = new(driver.pool_) CYShiftRightSigned($1, $3); }
817 | ShiftExpression ">>>" AdditiveExpression { $$ = new(driver.pool_) CYShiftRightUnsigned($1, $3); }
821 : AdditiveExpressionNoBF { $$ = $1; }
822 | ShiftExpressionNoBF "<<" AdditiveExpression { $$ = new(driver.pool_) CYShiftLeft($1, $3); }
823 | ShiftExpressionNoBF ">>" AdditiveExpression { $$ = new(driver.pool_) CYShiftRightSigned($1, $3); }
824 | ShiftExpressionNoBF ">>>" AdditiveExpression { $$ = new(driver.pool_) CYShiftRightUnsigned($1, $3); }
827 /* 11.8 Relational Operators {{{ */
828 RelationalExpressionNoIn_
829 : "<" ShiftExpression { $$ = new(driver.pool_) CYLess(NULL, $2); }
830 | ">" ShiftExpression { $$ = new(driver.pool_) CYGreater(NULL, $2); }
831 | "<=" ShiftExpression { $$ = new(driver.pool_) CYLessOrEqual(NULL, $2); }
832 | ">=" ShiftExpression { $$ = new(driver.pool_) CYGreaterOrEqual(NULL, $2); }
833 | "instanceof" ShiftExpression { $$ = new(driver.pool_) CYInstanceOf(NULL, $2); }
836 RelationalExpression_
837 : RelationalExpressionNoIn_ { $$ = $1; }
838 | "in" ShiftExpression { $$ = new(driver.pool_) CYIn(NULL, $2); }
842 : ShiftExpression { $$ = $1; }
843 | RelationalExpression RelationalExpression_ { $2->SetLeft($1); $$ = $2; }
846 RelationalExpressionNoIn
847 : ShiftExpression { $$ = $1; }
848 | RelationalExpressionNoIn RelationalExpressionNoIn_ { $2->SetLeft($1); $$ = $2; }
851 RelationalExpressionNoBF
852 : ShiftExpressionNoBF { $$ = $1; }
853 | RelationalExpressionNoBF RelationalExpression_ { $2->SetLeft($1); $$ = $2; }
856 /* 11.9 Equality Operators {{{ */
858 : RelationalExpression { $$ = $1; }
859 | EqualityExpression "==" RelationalExpression { $$ = new(driver.pool_) CYEqual($1, $3); }
860 | EqualityExpression "!=" RelationalExpression { $$ = new(driver.pool_) CYNotEqual($1, $3); }
861 | EqualityExpression "===" RelationalExpression { $$ = new(driver.pool_) CYIdentical($1, $3); }
862 | EqualityExpression "!==" RelationalExpression { $$ = new(driver.pool_) CYNotIdentical($1, $3); }
865 EqualityExpressionNoIn
866 : RelationalExpressionNoIn { $$ = $1; }
867 | EqualityExpressionNoIn "==" RelationalExpressionNoIn { $$ = new(driver.pool_) CYEqual($1, $3); }
868 | EqualityExpressionNoIn "!=" RelationalExpressionNoIn { $$ = new(driver.pool_) CYNotEqual($1, $3); }
869 | EqualityExpressionNoIn "===" RelationalExpressionNoIn { $$ = new(driver.pool_) CYIdentical($1, $3); }
870 | EqualityExpressionNoIn "!==" RelationalExpressionNoIn { $$ = new(driver.pool_) CYNotIdentical($1, $3); }
873 EqualityExpressionNoBF
874 : RelationalExpressionNoBF { $$ = $1; }
875 | EqualityExpressionNoBF "==" RelationalExpression { $$ = new(driver.pool_) CYEqual($1, $3); }
876 | EqualityExpressionNoBF "!=" RelationalExpression { $$ = new(driver.pool_) CYNotEqual($1, $3); }
877 | EqualityExpressionNoBF "===" RelationalExpression { $$ = new(driver.pool_) CYIdentical($1, $3); }
878 | EqualityExpressionNoBF "!==" RelationalExpression { $$ = new(driver.pool_) CYNotIdentical($1, $3); }
881 /* 11.10 Binary Bitwise Operators {{{ */
883 : EqualityExpression { $$ = $1; }
884 | BitwiseANDExpression "&" EqualityExpression { $$ = new(driver.pool_) CYBitwiseAnd($1, $3); }
887 BitwiseANDExpressionNoIn
888 : EqualityExpressionNoIn { $$ = $1; }
889 | BitwiseANDExpressionNoIn "&" EqualityExpressionNoIn { $$ = new(driver.pool_) CYBitwiseAnd($1, $3); }
892 BitwiseANDExpressionNoBF
893 : EqualityExpressionNoBF { $$ = $1; }
894 | BitwiseANDExpressionNoBF "&" EqualityExpression { $$ = new(driver.pool_) CYBitwiseAnd($1, $3); }
898 : BitwiseANDExpression { $$ = $1; }
899 | BitwiseXORExpression "^" BitwiseANDExpression { $$ = new(driver.pool_) CYBitwiseXOr($1, $3); }
902 BitwiseXORExpressionNoIn
903 : BitwiseANDExpressionNoIn { $$ = $1; }
904 | BitwiseXORExpressionNoIn "^" BitwiseANDExpressionNoIn { $$ = new(driver.pool_) CYBitwiseXOr($1, $3); }
907 BitwiseXORExpressionNoBF
908 : BitwiseANDExpressionNoBF { $$ = $1; }
909 | BitwiseXORExpressionNoBF "^" BitwiseANDExpression { $$ = new(driver.pool_) CYBitwiseXOr($1, $3); }
913 : BitwiseXORExpression { $$ = $1; }
914 | BitwiseORExpression "|" BitwiseXORExpression { $$ = new(driver.pool_) CYBitwiseOr($1, $3); }
917 BitwiseORExpressionNoIn
918 : BitwiseXORExpressionNoIn { $$ = $1; }
919 | BitwiseORExpressionNoIn "|" BitwiseXORExpressionNoIn { $$ = new(driver.pool_) CYBitwiseOr($1, $3); }
922 BitwiseORExpressionNoBF
923 : BitwiseXORExpressionNoBF { $$ = $1; }
924 | BitwiseORExpressionNoBF "|" BitwiseXORExpression { $$ = new(driver.pool_) CYBitwiseOr($1, $3); }
927 /* 11.11 Binary Logical Operators {{{ */
929 : BitwiseORExpression { $$ = $1; }
930 | LogicalANDExpression "&&" BitwiseORExpression { $$ = new(driver.pool_) CYLogicalAnd($1, $3); }
933 LogicalANDExpressionNoIn
934 : BitwiseORExpressionNoIn { $$ = $1; }
935 | LogicalANDExpressionNoIn "&&" BitwiseORExpressionNoIn { $$ = new(driver.pool_) CYLogicalAnd($1, $3); }
938 LogicalANDExpressionNoBF
939 : BitwiseORExpressionNoBF { $$ = $1; }
940 | LogicalANDExpressionNoBF "&&" BitwiseORExpression { $$ = new(driver.pool_) CYLogicalAnd($1, $3); }
944 : LogicalANDExpression { $$ = $1; }
945 | LogicalORExpression "||" LogicalANDExpression { $$ = new(driver.pool_) CYLogicalOr($1, $3); }
948 LogicalORExpressionNoIn
949 : LogicalANDExpressionNoIn { $$ = $1; }
950 | LogicalORExpressionNoIn "||" LogicalANDExpressionNoIn { $$ = new(driver.pool_) CYLogicalOr($1, $3); }
953 LogicalORExpressionNoBF
954 : LogicalANDExpressionNoBF { $$ = $1; }
955 | LogicalORExpressionNoBF "||" LogicalANDExpression { $$ = new(driver.pool_) CYLogicalOr($1, $3); }
958 /* 11.12 Conditional Operator ( ? : ) {{{ */
959 ConditionalExpression
960 : LogicalORExpression { $$ = $1; }
961 | LogicalORExpression "?" AssignmentExpression ":" AssignmentExpression { $$ = new(driver.pool_) CYCondition($1, $3, $5); }
964 ConditionalExpressionNoIn
965 : LogicalORExpressionNoIn { $$ = $1; }
966 | LogicalORExpressionNoIn "?" AssignmentExpression ":" AssignmentExpressionNoIn { $$ = new(driver.pool_) CYCondition($1, $3, $5); }
969 ConditionalExpressionNoBF
970 : LogicalORExpressionNoBF { $$ = $1; }
971 | LogicalORExpressionNoBF "?" AssignmentExpression ":" AssignmentExpression { $$ = new(driver.pool_) CYCondition($1, $3, $5); }
974 /* 11.13 Assignment Operators {{{ */
975 AssignmentExpression_
976 : "=" AssignmentExpression { $$ = new(driver.pool_) CYAssign(NULL, $2); }
977 | "*=" AssignmentExpression { $$ = new(driver.pool_) CYMultiplyAssign(NULL, $2); }
978 | "/=" AssignmentExpression { $$ = new(driver.pool_) CYDivideAssign(NULL, $2); }
979 | "%=" AssignmentExpression { $$ = new(driver.pool_) CYModulusAssign(NULL, $2); }
980 | "+=" AssignmentExpression { $$ = new(driver.pool_) CYAddAssign(NULL, $2); }
981 | "-=" AssignmentExpression { $$ = new(driver.pool_) CYSubtractAssign(NULL, $2); }
982 | "<<=" AssignmentExpression { $$ = new(driver.pool_) CYShiftLeftAssign(NULL, $2); }
983 | ">>=" AssignmentExpression { $$ = new(driver.pool_) CYShiftRightSignedAssign(NULL, $2); }
984 | ">>>=" AssignmentExpression { $$ = new(driver.pool_) CYShiftRightUnsignedAssign(NULL, $2); }
985 | "&=" AssignmentExpression { $$ = new(driver.pool_) CYBitwiseAndAssign(NULL, $2); }
986 | "^=" AssignmentExpression { $$ = new(driver.pool_) CYBitwiseXOrAssign(NULL, $2); }
987 | "|=" AssignmentExpression { $$ = new(driver.pool_) CYBitwiseOrAssign(NULL, $2); }
991 : LeftHandSideExpression { $$ = $1; }
992 | AssigneeExpression_ { $$ = $1; }
995 AssigneeExpressionNoBF
996 : LeftHandSideExpressionNoBF { $$ = $1; }
997 | AssigneeExpression_ { $$ = $1; }
1000 AssignmentExpression
1001 : ConditionalExpression { $$ = $1; }
1002 | AssigneeExpression AssignmentExpression_ { $2->SetLeft($1); $$ = $2; }
1005 AssignmentExpressionNoIn
1006 : ConditionalExpressionNoIn { $$ = $1; }
1007 | AssigneeExpression "=" AssignmentExpressionNoIn { $$ = new(driver.pool_) CYAssign($1, $3); }
1008 | AssigneeExpression "*=" AssignmentExpressionNoIn { $$ = new(driver.pool_) CYMultiplyAssign($1, $3); }
1009 | AssigneeExpression "/=" AssignmentExpressionNoIn { $$ = new(driver.pool_) CYDivideAssign($1, $3); }
1010 | AssigneeExpression "%=" AssignmentExpressionNoIn { $$ = new(driver.pool_) CYModulusAssign($1, $3); }
1011 | AssigneeExpression "+=" AssignmentExpressionNoIn { $$ = new(driver.pool_) CYAddAssign($1, $3); }
1012 | AssigneeExpression "-=" AssignmentExpressionNoIn { $$ = new(driver.pool_) CYSubtractAssign($1, $3); }
1013 | AssigneeExpression "<<=" AssignmentExpressionNoIn { $$ = new(driver.pool_) CYShiftLeftAssign($1, $3); }
1014 | AssigneeExpression ">>=" AssignmentExpressionNoIn { $$ = new(driver.pool_) CYShiftRightSignedAssign($1, $3); }
1015 | AssigneeExpression ">>>=" AssignmentExpressionNoIn { $$ = new(driver.pool_) CYShiftRightUnsignedAssign($1, $3); }
1016 | AssigneeExpression "&=" AssignmentExpressionNoIn { $$ = new(driver.pool_) CYBitwiseAndAssign($1, $3); }
1017 | AssigneeExpression "^=" AssignmentExpressionNoIn { $$ = new(driver.pool_) CYBitwiseXOrAssign($1, $3); }
1018 | AssigneeExpression "|=" AssignmentExpressionNoIn { $$ = new(driver.pool_) CYBitwiseOrAssign($1, $3); }
1021 AssignmentExpressionNoBF
1022 : ConditionalExpressionNoBF { $$ = $1; }
1023 | AssigneeExpressionNoBF AssignmentExpression_ { $2->SetLeft($1); $$ = $2; }
1026 /* 11.14 Comma Operator {{{ */
1028 : "," Expression { $$ = new(driver.pool_) CYCompound($2); }
1033 : "," ExpressionNoIn { $$ = new(driver.pool_) CYCompound($2); }
1038 : Expression { $$ = $1; }
1043 : ExpressionNoIn { $$ = $1; }
1048 : AssignmentExpression Expression_ { if ($2) { $2->AddPrev($1); $$ = $2; } else $$ = $1; }
1052 : AssignmentExpressionNoIn ExpressionNoIn_ { if ($2) { $2->AddPrev($1); $$ = $2; } else $$ = $1; }
1056 : AssignmentExpressionNoBF Expression_ { if ($2) { $2->AddPrev($1); $$ = $2; } else $$ = $1; }
1060 /* 12 Statements {{{ */
1062 : Block { $$ = $1; }
1063 | VariableStatement { $$ = $1; }
1064 | EmptyStatement { $$ = $1; }
1065 | ExpressionStatement { $$ = $1; }
1066 | IfStatement { $$ = $1; }
1067 | IterationStatement { $$ = $1; }
1068 | ContinueStatement { $$ = $1; }
1069 | BreakStatement { $$ = $1; }
1070 | ReturnStatement { $$ = $1; }
1071 | WithStatement { $$ = $1; }
1072 | LabelledStatement { $$ = $1; }
1073 | SwitchStatement { $$ = $1; }
1074 | ThrowStatement { $$ = $1; }
1075 | TryStatement { $$ = $1; }
1079 : Statement_ { $$ = $1; }
1082 /* 12.1 Block {{{ */
1084 : "{" StatementListOpt "}" { $$ = $2; }
1088 : Block_ { if ($1) $$ = new(driver.pool_) CYBlock($1); else $$ = new(driver.pool_) CYEmpty(); }
1092 : Statement StatementListOpt { $1->SetNext($2); $$ = $1; }
1096 : StatementList { $$ = $1; }
1100 /* 12.2 Variable Statement {{{ */
1102 : "var" VariableDeclarationList Terminator { $$ = new(driver.pool_) CYVar($2); }
1105 VariableDeclarationList_
1106 : "," VariableDeclarationList { $$ = $2; }
1110 VariableDeclarationListNoIn_
1111 : "," VariableDeclarationListNoIn { $$ = $2; }
1115 VariableDeclarationList
1116 : VariableDeclaration VariableDeclarationList_ { $$ = new(driver.pool_) CYDeclarations($1, $2); }
1119 VariableDeclarationListNoIn
1120 : VariableDeclarationNoIn VariableDeclarationListNoIn_ { $$ = new(driver.pool_) CYDeclarations($1, $2); }
1124 : Identifier InitialiserOpt { $$ = new(driver.pool_) CYDeclaration($1, $2); }
1127 VariableDeclarationNoIn
1128 : Identifier InitialiserNoInOpt { $$ = new(driver.pool_) CYDeclaration($1, $2); }
1132 : Initialiser { $$ = $1; }
1137 : InitialiserNoIn { $$ = $1; }
1142 : "=" AssignmentExpression { $$ = $2; }
1146 : "=" AssignmentExpressionNoIn { $$ = $2; }
1149 /* 12.3 Empty Statement {{{ */
1151 : ";" { $$ = new(driver.pool_) CYEmpty(); }
1154 /* 12.4 Expression Statement {{{ */
1156 : ExpressionNoBF Terminator { $$ = new(driver.pool_) CYExpress($1); }
1159 /* 12.5 The if Statement {{{ */
1161 : "else" Statement { $$ = $2; }
1162 | %prec "if" { $$ = NULL; }
1166 : "if" "(" Expression ")" Statement ElseStatementOpt { $$ = new(driver.pool_) CYIf($3, $5, $6); }
1170 /* 12.6 Iteration Statements {{{ */
1172 : DoWhileStatement { $$ = $1; }
1173 | WhileStatement { $$ = $1; }
1174 | ForStatement { $$ = $1; }
1175 | ForInStatement { $$ = $1; }
1178 /* 12.6.1 The do-while Statement {{{ */
1180 : "do" Statement "while" "(" Expression ")" TerminatorOpt { $$ = new(driver.pool_) CYDoWhile($5, $2); }
1183 /* 12.6.2 The while Statement {{{ */
1185 : "while" "(" Expression ")" Statement { $$ = new(driver.pool_) CYWhile($3, $5); }
1188 /* 12.6.3 The for Statement {{{ */
1190 : "for" "(" ForStatementInitialiser ";" ExpressionOpt ";" ExpressionOpt ")" Statement { $$ = new(driver.pool_) CYFor($3, $5, $7, $9); }
1193 ForStatementInitialiser
1194 : ExpressionNoInOpt { $$ = $1; }
1195 | "var" VariableDeclarationListNoIn { $$ = $2; }
1198 /* 12.6.4 The for-in Statement {{{ */
1200 : "for" "(" ForInStatementInitialiser "in" Expression ")" Statement { $$ = new(driver.pool_) CYForIn($3, $5, $7); }
1203 ForInStatementInitialiser
1204 : LeftHandSideExpression { $$ = $1; }
1205 | "var" VariableDeclarationNoIn { $$ = $2; }
1209 /* 12.7 The continue Statement {{{ */
1211 : "continue" IdentifierOpt Terminator { $$ = new(driver.pool_) CYContinue($2); }
1214 /* 12.8 The break Statement {{{ */
1216 : "break" IdentifierOpt Terminator { $$ = new(driver.pool_) CYBreak($2); }
1219 /* 12.9 The return Statement {{{ */
1221 : "return" ExpressionOpt Terminator { $$ = new(driver.pool_) CYReturn($2); }
1224 /* 12.10 The with Statement {{{ */
1226 : "with" "(" Expression ")" Statement { $$ = new(driver.pool_) CYWith($3, $5); }
1230 /* 12.11 The switch Statement {{{ */
1232 : "switch" "(" Expression ")" CaseBlock { $$ = new(driver.pool_) CYSwitch($3, $5); }
1236 : "{" CaseClausesOpt "}" { $$ = $2; }
1240 : CaseClause CaseClausesOpt { $1->SetNext($2); $$ = $1; }
1241 | DefaultClause CaseClausesOpt { $1->SetNext($2); $$ = $1; }
1246 : "case" Expression ":" StatementListOpt { $$ = new(driver.pool_) CYClause($2, $4); }
1250 : "default" ":" StatementListOpt { $$ = new(driver.pool_) CYClause(NULL, $3); }
1253 /* 12.12 Labelled Statements {{{ */
1255 : Identifier ":" Statement { $$ = new(driver.pool_) CYLabel($1, $3); }
1258 /* 12.13 The throw Statement {{{ */
1260 : "throw" Expression Terminator { $$ = new(driver.pool_) CYThrow($2); }
1263 /* 12.14 The try Statement {{{ */
1265 : "try" Block_ CatchOpt FinallyOpt { $$ = new(driver.pool_) CYTry($2, $3, $4); }
1269 : "catch" "(" Identifier ")" Block_ { $$ = new(driver.pool_) CYCatch($3, $5); }
1274 : "finally" Block_ { $$ = new(driver.pool_) CYFinally($2); }
1279 /* 13 Function Definition {{{ */
1281 : "function" Identifier "(" FormalParameterList ")" "{" FunctionBody "}" { $$ = new(driver.pool_) CYFunctionStatement($2, $4, $7); }
1285 : "function" IdentifierOpt "(" FormalParameterList ")" "{" FunctionBody "}" { $$ = new(driver.pool_) CYFunctionExpression($2, $4, $7); }
1288 FormalParameterList_
1289 : "," FormalParameterList { $$ = $2; }
1294 : Identifier FormalParameterList_ { $$ = new(driver.pool_) CYFunctionParameter($1, $2); }
1299 : SourceElements { $$ = $1; }
1302 /* 14 Program {{{ */
1304 : SourceElements { driver.program_ = new(driver.pool_) CYProgram($1); }
1308 : SourceElement SourceElements { $1->SetNext($2); $$ = $1; }
1313 : Statement_ { $$ = $1; }
1314 | FunctionDeclaration { $$ = $1; }
1319 /* Cycript (Objective-C): @class Declaration {{{ */
1321 : ":" MemberExpressionNoBF { $$ = $2; }
1326 : "{" "}" { $$ = NULL; }
1330 : "+" { $$ = false; }
1331 | "-" { $$ = true; }
1335 : "(" Expression ")" { $$ = $2; }
1340 : Word ":" TypeOpt Identifier { $$ = new(driver.pool_) CYMessageParameter($1, $3, $4); }
1343 MessageParameterListOpt
1344 : MessageParameterList { $$ = $1; }
1348 MessageParameterList
1349 : MessageParameter MessageParameterListOpt { $1->SetNext($2); $$ = $1; }
1353 : MessageParameterList { $$ = $1; }
1354 | Word { $$ = new(driver.pool_) CYMessageParameter($1, NULL, NULL); }
1357 ClassMessageDeclaration
1358 : MessageScope TypeOpt MessageParameters "{" FunctionBody "}" { $$ = new(driver.pool_) CYMessage($1, $2, $3, $5); }
1361 ClassMessageDeclarationListOpt
1362 : ClassMessageDeclarationListOpt ClassMessageDeclaration { $2->SetNext($1); $$ = $2; }
1367 : Identifier { $$ = $1; }
1368 | "(" AssignmentExpression ")" { $$ = $2; }
1372 : ClassName { $$ = $1; }
1377 : "@class" ClassNameOpt ClassSuperOpt ClassFieldList ClassMessageDeclarationListOpt "@end" { $$ = new(driver.pool_) CYClassExpression($2, $3, $4, $5); }
1381 : "@class" ClassName ClassSuperOpt ClassFieldList ClassMessageDeclarationListOpt "@end" { $$ = new(driver.pool_) CYClassStatement($2, $3, $4, $5); }
1385 : "@class" ClassName ClassMessageDeclarationListOpt "@end" { $$ = new(driver.pool_) CYCategory($2, $3); }
1389 : ClassExpression { $$ = $1; }
1393 : ClassStatement { $$ = $1; }
1394 | CategoryStatement { $$ = $1; }
1397 /* Cycript (Objective-C): Send Message {{{ */
1399 : "," AssignmentExpression VariadicCall { $$ = new(driver.pool_) CYArgument(NULL, $2, $3); }
1404 : SelectorCall { $$ = $1; }
1405 | VariadicCall { $$ = $1; }
1409 : WordOpt ":" AssignmentExpression SelectorCall_ { $$ = new(driver.pool_) CYArgument($1 ?: new(driver.pool_) CYBlank(), $3, $4); }
1413 : SelectorCall { $$ = $1; }
1414 | Word { $$ = new(driver.pool_) CYArgument($1, NULL); }
1418 : "[" AssignmentExpression SelectorList "]" { $$ = new(driver.pool_) CYSend($2, $3); }
1421 SelectorExpressionOpt
1422 : SelectorExpression_ { $$ = $1; }
1427 : WordOpt ":" SelectorExpressionOpt { $$ = new(driver.pool_) CYSelectorPart($1, true, $3); }
1431 : SelectorExpression_ { $$ = $1; }
1432 | Word { $$ = new(driver.pool_) CYSelectorPart($1, false, NULL); }
1436 : MessageExpression { $$ = $1; }
1437 | "@selector" "(" SelectorExpression ")" { $$ = new(driver.pool_) CYSelector($3); }
1443 /* Cycript (C): Pointer Indirection/Addressing {{{ */
1445 : "*" UnaryExpression { $$ = new(driver.pool_) CYIndirect($2); }
1449 : "&" UnaryExpression { $$ = new(driver.pool_) CYAddressOf($2); }
1453 : "->" "[" Expression "]" { $$ = new(driver.pool_) CYIndirectMember(NULL, $3); }
1454 | "->" Identifier { $$ = new(driver.pool_) CYIndirectMember(NULL, new(driver.pool_) CYString($2)); }
1459 /* ECMAScript5: Object Literal Trailing Comma {{{ */
1460 PropertyNameAndValueList_
1461 : "," { $$ = NULL; }
1464 /* JavaScript 1.7: Array Comprehensions {{{ */
1466 : "if" "(" Expression ")" { $$ = new(driver.pool_) CYIfComprehension($3); }
1470 : "for" "(" Identifier "in" Expression ")" { $$ = new(driver.pool_) CYForInComprehension($3, $5); }
1471 | "for" "each" "(" Identifier "in" Expression ")" { $$ = new(driver.pool_) CYForEachInComprehension($4, $6); }
1474 ComprehensionListOpt
1475 : ComprehensionList { $$ = $1; }
1476 | IfComprehension { $$ = $1; }
1481 : ForComprehension ComprehensionListOpt { $1->SetNext($2); $$ = $1; }
1485 : "[" AssignmentExpression ComprehensionList "]" { $$ = new(driver.pool_) CYArrayComprehension($2, $3); }
1488 /* JavaScript 1.7: for each {{{ */
1490 : "for" "each" "(" ForInStatementInitialiser "in" Expression ")" Statement { $$ = new(driver.pool_) CYForEachIn($4, $6, $8); }
1493 /* JavaScript 1.7: let Statements {{{ *//*
1495 : "let" "(" VariableDeclarationList ")" Block_ { $$ = new(driver.pool_) CYLet($3, $5); }
1502 /* JavaScript FTW: Function Statements {{{ */
1504 : FunctionDeclaration { driver.Warning(yylloc, "warning, FunctionDeclaration is a SourceElement, not a Statement"); } { $$ = $1; }