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
55 CYArgument *argument_;
56 CYAssignment *assignment_;
60 CYClassName *className_;
61 CYCompound *compound_;
62 CYDeclaration *declaration_;
63 CYDeclarations *declarations_;
65 CYExpression *expression_;
68 CYForInitialiser *for_;
69 CYForInInitialiser *forin_;
70 CYFunctionParameter *functionParameter_;
71 CYIdentifier *identifier_;
76 CYMessageParameter *messageParameter_;
79 CYProperty *property_;
80 CYPropertyName *propertyName_;
81 CYSelectorPart *selector_;
83 CYStatement *statement_;
94 int cylex(YYSTYPE *lvalp, cy::location *llocp, void *scanner);
103 @$.begin.filename = @$.end.filename = &driver.filename_;
111 %parse-param { CYDriver &driver }
112 %lex-param { void *scanner }
115 %token AmpersandAmpersand "&&"
116 %token AmpersandEqual "&="
118 %token CarrotEqual "^="
120 %token EqualEqual "=="
121 %token EqualEqualEqual "==="
122 %token Exclamation "!"
123 %token ExclamationEqual "!="
124 %token ExclamationEqualEqual "!=="
126 %token HyphenEqual "-="
127 %token HyphenHyphen "--"
128 %token HyphenHyphen_ "\n--"
129 %token HyphenRight "->"
131 %token LeftEqual "<="
133 %token LeftLeftEqual "<<="
135 %token PercentEqual "%="
138 %token PipeEqual "|="
141 %token PlusEqual "+="
143 %token PlusPlus_ "\n++"
145 %token RightEqual ">="
146 %token RightRight ">>"
147 %token RightRightEqual ">>="
148 %token RightRightRight ">>>"
149 %token RightRightRightEqual ">>>="
151 %token SlashEqual "/="
153 %token StarEqual "*="
163 %token CloseParen ")"
166 %token CloseBrace "}"
168 %token OpenBracket "["
169 %token CloseBracket "]"
171 %token AtClass "@class"
172 %token AtSelector "@selector"
175 %token <word_> Break "break"
176 %token <word_> Case "case"
177 %token <word_> Catch "catch"
178 %token <word_> Continue "continue"
179 %token <word_> Default "default"
180 %token <word_> Delete "delete"
181 %token <word_> Do "do"
182 %token <word_> Else "else"
183 %token <false_> False "false"
184 %token <word_> Finally "finally"
185 %token <word_> For "for"
186 %token <word_> Function "function"
187 %token <word_> If "if"
188 %token <word_> In "in"
189 %token <word_> InstanceOf "instanceof"
190 %token <word_> New "new"
191 %token <null_> Null "null"
192 %token <word_> Return "return"
193 %token <word_> Switch "switch"
194 %token <this_> This "this"
195 %token <word_> Throw "throw"
196 %token <true_> True "true"
197 %token <word_> Try "try"
198 %token <word_> TypeOf "typeof"
199 %token <word_> Var "var"
200 %token <word_> Void "void"
201 %token <word_> While "while"
202 %token <word_> With "with"
204 %token <word_> Abstract "abstract"
205 %token <word_> Boolean "boolean"
206 %token <word_> Byte "byte"
207 %token <word_> Char "char"
208 %token <word_> Class "class"
209 %token <word_> Const "const"
210 %token <word_> Debugger "debugger"
211 %token <word_> Double "double"
212 %token <word_> Enum "enum"
213 %token <word_> Export "export"
214 %token <word_> Extends "extends"
215 %token <word_> Final "final"
216 %token <word_> Float "float"
217 %token <word_> Goto "goto"
218 %token <word_> Implements "implements"
219 %token <word_> Import "import"
220 %token <word_> Int "int"
221 %token <word_> Interface "interface"
222 %token <word_> Long "long"
223 %token <word_> Native "native"
224 %token <word_> Package "package"
225 %token <word_> Private "private"
226 %token <word_> Protected "protected"
227 %token <word_> Public "public"
228 %token <word_> Short "short"
229 %token <word_> Static "static"
230 %token <word_> Super "super"
231 %token <word_> Synchronized "synchronized"
232 %token <word_> Throws "throws"
233 %token <word_> Transient "transient"
234 %token <word_> Volatile "volatile"
236 %token <identifier_> Identifier
237 %token <number_> NumericLiteral
238 %token <string_> StringLiteral
240 %type <expression_> AdditiveExpression
241 %type <expression_> AdditiveExpressionNoBF
242 %type <argument_> ArgumentList
243 %type <argument_> ArgumentList_
244 %type <argument_> ArgumentListOpt
245 %type <argument_> Arguments
246 %type <literal_> ArrayLiteral
247 %type <expression_> AssigneeExpression
248 %type <expression_> AssigneeExpression_
249 %type <expression_> AssigneeExpressionNoBF
250 %type <expression_> AssignmentExpression
251 %type <assignment_> AssignmentExpression_
252 %type <expression_> AssignmentExpressionNoBF
253 %type <expression_> AssignmentExpressionNoIn
254 %type <expression_> BitwiseANDExpression
255 %type <expression_> BitwiseANDExpressionNoBF
256 %type <expression_> BitwiseANDExpressionNoIn
257 %type <statement_> Block
258 %type <boolean_> BooleanLiteral
259 %type <expression_> BitwiseORExpression
260 %type <expression_> BitwiseORExpressionNoBF
261 %type <expression_> BitwiseORExpressionNoIn
262 %type <expression_> BitwiseXORExpression
263 %type <expression_> BitwiseXORExpressionNoBF
264 %type <expression_> BitwiseXORExpressionNoIn
265 %type <statement_> BreakStatement
266 %type <expression_> CallExpression
267 %type <expression_> CallExpressionNoBF
268 %type <clause_> CaseBlock
269 %type <clause_> CaseClause
270 %type <clause_> CaseClausesOpt
271 %type <catch_> CatchOpt
272 %type <statement_> CategoryStatement
273 %type <expression_> ClassExpression
274 %type <message_> ClassMessageDeclaration
275 %type <message_> ClassMessageDeclarationListOpt
276 %type <className_> ClassName
277 %type <className_> ClassNameOpt
278 %type <expression_> ClassSuperOpt
279 %type <field_> ClassFieldList
280 %type <expression_> ConditionalExpression
281 %type <expression_> ConditionalExpressionNoBF
282 %type <expression_> ConditionalExpressionNoIn
283 %type <statement_> ContinueStatement
284 %type <clause_> DefaultClause
285 %type <statement_> DoWhileStatement
286 %type <expression_> Element
287 %type <expression_> ElementOpt
288 %type <element_> ElementList
289 %type <element_> ElementListOpt
290 %type <statement_> ElseStatementOpt
291 %type <statement_> EmptyStatement
292 %type <expression_> EqualityExpression
293 %type <expression_> EqualityExpressionNoBF
294 %type <expression_> EqualityExpressionNoIn
295 %type <expression_> Expression
296 %type <expression_> ExpressionOpt
297 %type <compound_> Expression_
298 %type <expression_> ExpressionNoBF
299 %type <expression_> ExpressionNoIn
300 %type <compound_> ExpressionNoIn_
301 %type <expression_> ExpressionNoInOpt
302 %type <statement_> ExpressionStatement
303 %type <statement_> FinallyOpt
304 %type <statement_> ForStatement
305 %type <for_> ForStatementInitialiser
306 %type <statement_> ForInStatement
307 %type <forin_> ForInStatementInitialiser
308 %type <functionParameter_> FormalParameterList
309 %type <functionParameter_> FormalParameterList_
310 %type <source_> FunctionBody
311 %type <source_> FunctionDeclaration
312 %type <expression_> FunctionExpression
313 %type <identifier_> IdentifierOpt
314 %type <statement_> IfStatement
315 %type <expression_> Initialiser
316 %type <expression_> InitialiserOpt
317 %type <expression_> InitialiserNoIn
318 %type <expression_> InitialiserNoInOpt
319 %type <statement_> IterationStatement
320 %type <statement_> LabelledStatement
321 %type <expression_> LeftHandSideExpression
322 %type <expression_> LeftHandSideExpressionNoBF
323 %type <literal_> Literal
324 %type <expression_> LogicalANDExpression
325 %type <expression_> LogicalANDExpressionNoBF
326 %type <expression_> LogicalANDExpressionNoIn
327 %type <expression_> LogicalORExpression
328 %type <expression_> LogicalORExpressionNoBF
329 %type <expression_> LogicalORExpressionNoIn
330 %type <member_> MemberAccess
331 %type <expression_> MemberExpression
332 %type <expression_> MemberExpression_
333 %type <expression_> MemberExpressionNoBF
334 %type <messageParameter_> MessageParameter
335 %type <messageParameter_> MessageParameters
336 %type <messageParameter_> MessageParameterList
337 %type <messageParameter_> MessageParameterListOpt
338 %type <bool_> MessageScope
339 %type <expression_> MultiplicativeExpression
340 %type <expression_> MultiplicativeExpressionNoBF
341 %type <expression_> NewExpression
342 %type <expression_> NewExpression_
343 %type <expression_> NewExpressionNoBF
344 %type <null_> NullLiteral
345 %type <literal_> ObjectLiteral
346 %type <expression_> PostfixExpression
347 %type <expression_> PostfixExpressionNoBF
348 %type <expression_> PrimaryExpression
349 %type <expression_> PrimaryExpression_
350 %type <expression_> PrimaryExpressionNoBF
351 %type <source_> Program
352 %type <propertyName_> PropertyName
353 %type <property_> PropertyNameAndValueList
354 %type <property_> PropertyNameAndValueList_
355 %type <property_> PropertyNameAndValueListOpt
356 %type <expression_> RelationalExpression
357 %type <infix_> RelationalExpression_
358 %type <expression_> RelationalExpressionNoBF
359 %type <expression_> RelationalExpressionNoIn
360 %type <infix_> RelationalExpressionNoIn_
361 %type <statement_> ReturnStatement
362 %type <selector_> SelectorExpression
363 %type <selector_> SelectorExpression_
364 %type <selector_> SelectorExpressionOpt
365 %type <expression_> ShiftExpression
366 %type <expression_> ShiftExpressionNoBF
367 %type <source_> SourceElement
368 %type <source_> SourceElements
369 %type <statement_> Statement
370 %type <statement_> StatementList
371 %type <statement_> StatementListOpt
372 %type <statement_> SwitchStatement
373 %type <statement_> ThrowStatement
374 %type <statement_> TryStatement
375 %type <expression_> TypeOpt
376 %type <expression_> UnaryExpression
377 %type <expression_> UnaryExpression_
378 %type <expression_> UnaryExpressionNoBF
379 %type <declaration_> VariableDeclaration
380 %type <declaration_> VariableDeclarationNoIn
381 %type <declarations_> VariableDeclarationList
382 %type <declarations_> VariableDeclarationList_
383 %type <declarations_> VariableDeclarationListNoIn
384 %type <declarations_> VariableDeclarationListNoIn_
385 %type <statement_> VariableStatement
386 %type <statement_> WhileStatement
387 %type <statement_> WithStatement
389 %type <word_> WordOpt
391 %type <expression_> MessageExpression
392 %type <argument_> SelectorCall
393 %type <argument_> SelectorCall_
394 %type <argument_> SelectorList
395 %type <argument_> VariadicCall
399 %left "<<" ">>" ">>>"
400 %left "<" ">" "<=" ">=" "instanceof" "in"
401 %left "==" "!=" "===" "!=="
408 %right "=" "*=" "/=" "%=" "+=" "-=" "<<=" ">>=" ">>>=" "&=" "^=" "|="
420 | error { yyerrok; driver.errors_.pop_back(); }
426 | error { if (yychar != 0 && yychar != cy::parser::token::CloseBrace && !yylval.newline_) YYABORT; else { yyerrok; driver.errors_.pop_back(); } }
445 : Identifier { $$ = $1; }
446 | "abstract" { $$ = $1; }
447 | "boolean" { $$ = $1; }
448 | "break" NewLineOpt { $$ = $1; }
449 | "byte" { $$ = $1; }
450 | "case" { $$ = $1; }
451 | "catch" { $$ = $1; }
452 | "char" { $$ = $1; }
453 | "class" { $$ = $1; }
454 | "const" { $$ = $1; }
455 | "continue" NewLineOpt { $$ = $1; }
456 | "debugger" { $$ = $1; }
457 | "default" { $$ = $1; }
458 | "delete" { $$ = $1; }
460 | "double" { $$ = $1; }
461 | "else" { $$ = $1; }
462 | "enum" { $$ = $1; }
463 | "export" { $$ = $1; }
464 | "extends" { $$ = $1; }
465 | "false" { $$ = $1; }
466 | "final" { $$ = $1; }
467 | "finally" { $$ = $1; }
468 | "float" { $$ = $1; }
470 | "function" { $$ = $1; }
471 | "goto" { $$ = $1; }
473 | "implements" { $$ = $1; }
474 | "import" { $$ = $1; }
475 /* XXX: | "in" { $$ = $1; } */
476 /* XXX: | "instanceof" { $$ = $1; } */
478 | "interface" { $$ = $1; }
479 | "long" { $$ = $1; }
480 | "native" { $$ = $1; }
482 | "null" { $$ = $1; }
483 | "package" { $$ = $1; }
484 | "private" { $$ = $1; }
485 | "protected" { $$ = $1; }
486 | "public" { $$ = $1; }
487 | "return" NewLineOpt { $$ = $1; }
488 | "short" { $$ = $1; }
489 | "static" { $$ = $1; }
490 | "super" { $$ = $1; }
491 | "switch" { $$ = $1; }
492 | "synchronized" { $$ = $1; }
493 | "this" { $$ = $1; }
494 | "throw" NewLineOpt { $$ = $1; }
495 | "throws" { $$ = $1; }
496 | "transient" { $$ = $1; }
497 | "true" { $$ = $1; }
499 | "typeof" { $$ = $1; }
501 | "void" { $$ = $1; }
502 | "volatile" { $$ = $1; }
503 | "while" { $$ = $1; }
504 | "with" { $$ = $1; }
508 : Identifier { $$ = $1; }
513 : NullLiteral { $$ = $1; }
514 | BooleanLiteral { $$ = $1; }
515 | NumericLiteral { $$ = $1; }
516 | StringLiteral { $$ = $1; }
520 : "null" { $$ = $1; }
524 : "true" { $$ = $1; }
525 | "false" { $$ = $1; }
528 /* 11.1 Primary Expressions {{{ */
530 : "this" { $$ = $1; }
531 | Identifier { $$ = new(driver.pool_) CYVariable($1); }
532 | Literal { $$ = $1; }
533 | ArrayLiteral { $$ = $1; }
534 | "(" Expression ")" { $$ = $2; }
538 : ObjectLiteral { $$ = $1; }
539 | PrimaryExpression_ { $$ = $1; }
542 PrimaryExpressionNoBF
543 : PrimaryExpression_ { $$ = $1; }
546 /* 11.1.4 Array Initialiser {{{ */
548 : "[" ElementListOpt "]" { $$ = new(driver.pool_) CYArray($2); }
552 : AssignmentExpression { $$ = $1; }
556 : Element { $$ = $1; }
561 : ElementList { $$ = $1; }
566 : ElementOpt "," ElementListOpt { $$ = new(driver.pool_) CYElement($1, $3); }
567 | Element { $$ = new(driver.pool_) CYElement($1, NULL); }
570 /* 11.1.5 Object Initialiser {{{ */
572 : "{" PropertyNameAndValueListOpt "}" { $$ = new(driver.pool_) CYObject($2); }
575 PropertyNameAndValueList_
576 : "," PropertyNameAndValueList { $$ = $2; }
577 | CommaOpt { $$ = NULL; }
580 PropertyNameAndValueListOpt
581 : PropertyNameAndValueList { $$ = $1; }
585 PropertyNameAndValueList
586 : PropertyName ":" AssignmentExpression PropertyNameAndValueList_ { $$ = new(driver.pool_) CYProperty($1, $3, $4); }
590 : Identifier { $$ = $1; }
591 | StringLiteral { $$ = $1; }
592 | NumericLiteral { $$ = $1; }
597 : "new" MemberExpression Arguments { $$ = new(driver.pool_) CYNew($2, $3); }
601 : "[" Expression "]" { $$ = new(driver.pool_) CYDirectMember(NULL, $2); }
602 | "." Identifier { $$ = new(driver.pool_) CYDirectMember(NULL, new(driver.pool_) CYString($2)); }
606 : PrimaryExpression { $$ = $1; }
607 | FunctionExpression { $$ = $1; }
608 | MemberExpression MemberAccess { $2->SetLeft($1); $$ = $2; }
609 | MemberExpression_ { $$ = $1; }
613 : PrimaryExpressionNoBF { $$ = $1; }
614 | MemberExpressionNoBF MemberAccess { $2->SetLeft($1); $$ = $2; }
615 | MemberExpression_ { $$ = $1; }
619 : "new" NewExpression { $$ = new(driver.pool_) CYNew($2, NULL); }
623 : MemberExpression { $$ = $1; }
624 | NewExpression_ { $$ = $1; }
628 : MemberExpressionNoBF { $$ = $1; }
629 | NewExpression_ { $$ = $1; }
633 : MemberExpression Arguments { $$ = new(driver.pool_) CYCall($1, $2); }
634 | CallExpression Arguments { $$ = new(driver.pool_) CYCall($1, $2); }
635 | CallExpression MemberAccess { $2->SetLeft($1); $$ = $2; }
639 : MemberExpressionNoBF Arguments { $$ = new(driver.pool_) CYCall($1, $2); }
640 | CallExpressionNoBF Arguments { $$ = new(driver.pool_) CYCall($1, $2); }
641 | CallExpressionNoBF MemberAccess { $2->SetLeft($1); $$ = $2; }
645 : "," ArgumentList { $$ = $2; }
650 : ArgumentList { $$ = $1; }
655 : AssignmentExpression ArgumentList_ { $$ = new(driver.pool_) CYArgument(NULL, $1, $2); }
659 : "(" ArgumentListOpt ")" { $$ = $2; }
662 LeftHandSideExpression
663 : NewExpression { $$ = $1; }
664 | CallExpression { $$ = $1; }
667 LeftHandSideExpressionNoBF
668 : NewExpressionNoBF { $$ = $1; }
669 | CallExpressionNoBF { $$ = $1; }
673 : AssigneeExpression { $$ = $1; }
674 | LeftHandSideExpression "++" { $$ = new(driver.pool_) CYPostIncrement($1); }
675 | LeftHandSideExpression "--" { $$ = new(driver.pool_) CYPostDecrement($1); }
678 PostfixExpressionNoBF
679 : AssigneeExpressionNoBF { $$ = $1; }
680 | LeftHandSideExpressionNoBF "++" { $$ = new(driver.pool_) CYPostIncrement($1); }
681 | LeftHandSideExpressionNoBF "--" { $$ = new(driver.pool_) CYPostDecrement($1); }
685 : "delete" UnaryExpression { $$ = new(driver.pool_) CYDelete($2); }
686 | "void" UnaryExpression { $$ = new(driver.pool_) CYVoid($2); }
687 | "typeof" UnaryExpression { $$ = new(driver.pool_) CYTypeOf($2); }
688 | "++" UnaryExpression { $$ = new(driver.pool_) CYPreIncrement($2); }
689 | "\n++" UnaryExpression { $$ = new(driver.pool_) CYPreIncrement($2); }
690 | "--" UnaryExpression { $$ = new(driver.pool_) CYPreDecrement($2); }
691 | "\n--" UnaryExpression { $$ = new(driver.pool_) CYPreDecrement($2); }
692 | "+" UnaryExpression { $$ = $2; }
693 | "-" UnaryExpression { $$ = new(driver.pool_) CYNegate($2); }
694 | "~" UnaryExpression { $$ = new(driver.pool_) CYBitwiseNot($2); }
695 | "!" UnaryExpression { $$ = new(driver.pool_) CYLogicalNot($2); }
699 : PostfixExpression { $$ = $1; }
700 | UnaryExpression_ { $$ = $1; }
704 : PostfixExpressionNoBF { $$ = $1; }
705 | UnaryExpression_ { $$ = $1; }
708 MultiplicativeExpression
709 : UnaryExpression { $$ = $1; }
710 | MultiplicativeExpression "*" UnaryExpression { $$ = new(driver.pool_) CYMultiply($1, $3); }
711 | MultiplicativeExpression "/" UnaryExpression { $$ = new(driver.pool_) CYDivide($1, $3); }
712 | MultiplicativeExpression "%" UnaryExpression { $$ = new(driver.pool_) CYModulus($1, $3); }
715 MultiplicativeExpressionNoBF
716 : UnaryExpressionNoBF { $$ = $1; }
717 | MultiplicativeExpressionNoBF "*" UnaryExpression { $$ = new(driver.pool_) CYMultiply($1, $3); }
718 | MultiplicativeExpressionNoBF "/" UnaryExpression { $$ = new(driver.pool_) CYDivide($1, $3); }
719 | MultiplicativeExpressionNoBF "%" UnaryExpression { $$ = new(driver.pool_) CYModulus($1, $3); }
723 : MultiplicativeExpression { $$ = $1; }
724 | AdditiveExpression "+" MultiplicativeExpression { $$ = new(driver.pool_) CYAdd($1, $3); }
725 | AdditiveExpression "-" MultiplicativeExpression { $$ = new(driver.pool_) CYSubtract($1, $3); }
728 AdditiveExpressionNoBF
729 : MultiplicativeExpressionNoBF { $$ = $1; }
730 | AdditiveExpressionNoBF "+" MultiplicativeExpression { $$ = new(driver.pool_) CYAdd($1, $3); }
731 | AdditiveExpressionNoBF "-" MultiplicativeExpression { $$ = new(driver.pool_) CYSubtract($1, $3); }
735 : AdditiveExpression { $$ = $1; }
736 | ShiftExpression "<<" AdditiveExpression { $$ = new(driver.pool_) CYShiftLeft($1, $3); }
737 | ShiftExpression ">>" AdditiveExpression { $$ = new(driver.pool_) CYShiftRightSigned($1, $3); }
738 | ShiftExpression ">>>" AdditiveExpression { $$ = new(driver.pool_) CYShiftRightUnsigned($1, $3); }
742 : AdditiveExpressionNoBF { $$ = $1; }
743 | ShiftExpressionNoBF "<<" AdditiveExpression { $$ = new(driver.pool_) CYShiftLeft($1, $3); }
744 | ShiftExpressionNoBF ">>" AdditiveExpression { $$ = new(driver.pool_) CYShiftRightSigned($1, $3); }
745 | ShiftExpressionNoBF ">>>" AdditiveExpression { $$ = new(driver.pool_) CYShiftRightUnsigned($1, $3); }
748 RelationalExpressionNoIn_
749 : "<" ShiftExpression { $$ = new(driver.pool_) CYLess(NULL, $2); }
750 | ">" ShiftExpression { $$ = new(driver.pool_) CYGreater(NULL, $2); }
751 | "<=" ShiftExpression { $$ = new(driver.pool_) CYLessOrEqual(NULL, $2); }
752 | ">=" ShiftExpression { $$ = new(driver.pool_) CYGreaterOrEqual(NULL, $2); }
753 | "instanceof" ShiftExpression { $$ = new(driver.pool_) CYInstanceOf(NULL, $2); }
756 RelationalExpression_
757 : RelationalExpressionNoIn_ { $$ = $1; }
758 | "in" ShiftExpression { $$ = new(driver.pool_) CYIn(NULL, $2); }
762 : ShiftExpression { $$ = $1; }
763 | RelationalExpression RelationalExpression_ { $2->SetLeft($1); $$ = $2; }
766 RelationalExpressionNoIn
767 : ShiftExpression { $$ = $1; }
768 | RelationalExpressionNoIn RelationalExpressionNoIn_ { $2->SetLeft($1); $$ = $2; }
771 RelationalExpressionNoBF
772 : ShiftExpressionNoBF { $$ = $1; }
773 | RelationalExpressionNoBF RelationalExpression_ { $2->SetLeft($1); $$ = $2; }
777 : RelationalExpression { $$ = $1; }
778 | EqualityExpression "==" RelationalExpression { $$ = new(driver.pool_) CYEqual($1, $3); }
779 | EqualityExpression "!=" RelationalExpression { $$ = new(driver.pool_) CYNotEqual($1, $3); }
780 | EqualityExpression "===" RelationalExpression { $$ = new(driver.pool_) CYIdentical($1, $3); }
781 | EqualityExpression "!==" RelationalExpression { $$ = new(driver.pool_) CYNotIdentical($1, $3); }
784 EqualityExpressionNoIn
785 : RelationalExpressionNoIn { $$ = $1; }
786 | EqualityExpressionNoIn "==" RelationalExpressionNoIn { $$ = new(driver.pool_) CYEqual($1, $3); }
787 | EqualityExpressionNoIn "!=" RelationalExpressionNoIn { $$ = new(driver.pool_) CYNotEqual($1, $3); }
788 | EqualityExpressionNoIn "===" RelationalExpressionNoIn { $$ = new(driver.pool_) CYIdentical($1, $3); }
789 | EqualityExpressionNoIn "!==" RelationalExpressionNoIn { $$ = new(driver.pool_) CYNotIdentical($1, $3); }
792 EqualityExpressionNoBF
793 : RelationalExpressionNoBF { $$ = $1; }
794 | EqualityExpressionNoBF "==" RelationalExpression { $$ = new(driver.pool_) CYEqual($1, $3); }
795 | EqualityExpressionNoBF "!=" RelationalExpression { $$ = new(driver.pool_) CYNotEqual($1, $3); }
796 | EqualityExpressionNoBF "===" RelationalExpression { $$ = new(driver.pool_) CYIdentical($1, $3); }
797 | EqualityExpressionNoBF "!==" RelationalExpression { $$ = new(driver.pool_) CYNotIdentical($1, $3); }
801 : EqualityExpression { $$ = $1; }
802 | BitwiseANDExpression "&" EqualityExpression { $$ = new(driver.pool_) CYBitwiseAnd($1, $3); }
805 BitwiseANDExpressionNoIn
806 : EqualityExpressionNoIn { $$ = $1; }
807 | BitwiseANDExpressionNoIn "&" EqualityExpressionNoIn { $$ = new(driver.pool_) CYBitwiseAnd($1, $3); }
810 BitwiseANDExpressionNoBF
811 : EqualityExpressionNoBF { $$ = $1; }
812 | BitwiseANDExpressionNoBF "&" EqualityExpression { $$ = new(driver.pool_) CYBitwiseAnd($1, $3); }
816 : BitwiseANDExpression { $$ = $1; }
817 | BitwiseXORExpression "^" BitwiseANDExpression { $$ = new(driver.pool_) CYBitwiseXOr($1, $3); }
820 BitwiseXORExpressionNoIn
821 : BitwiseANDExpressionNoIn { $$ = $1; }
822 | BitwiseXORExpressionNoIn "^" BitwiseANDExpressionNoIn { $$ = new(driver.pool_) CYBitwiseXOr($1, $3); }
825 BitwiseXORExpressionNoBF
826 : BitwiseANDExpressionNoBF { $$ = $1; }
827 | BitwiseXORExpressionNoBF "^" BitwiseANDExpression { $$ = new(driver.pool_) CYBitwiseXOr($1, $3); }
831 : BitwiseXORExpression { $$ = $1; }
832 | BitwiseORExpression "|" BitwiseXORExpression { $$ = new(driver.pool_) CYBitwiseOr($1, $3); }
835 BitwiseORExpressionNoIn
836 : BitwiseXORExpressionNoIn { $$ = $1; }
837 | BitwiseORExpressionNoIn "|" BitwiseXORExpressionNoIn { $$ = new(driver.pool_) CYBitwiseOr($1, $3); }
840 BitwiseORExpressionNoBF
841 : BitwiseXORExpressionNoBF { $$ = $1; }
842 | BitwiseORExpressionNoBF "|" BitwiseXORExpression { $$ = new(driver.pool_) CYBitwiseOr($1, $3); }
846 : BitwiseORExpression { $$ = $1; }
847 | LogicalANDExpression "&&" BitwiseORExpression { $$ = new(driver.pool_) CYLogicalAnd($1, $3); }
850 LogicalANDExpressionNoIn
851 : BitwiseORExpressionNoIn { $$ = $1; }
852 | LogicalANDExpressionNoIn "&&" BitwiseORExpressionNoIn { $$ = new(driver.pool_) CYLogicalAnd($1, $3); }
855 LogicalANDExpressionNoBF
856 : BitwiseORExpressionNoBF { $$ = $1; }
857 | LogicalANDExpressionNoBF "&&" BitwiseORExpression { $$ = new(driver.pool_) CYLogicalAnd($1, $3); }
861 : LogicalANDExpression { $$ = $1; }
862 | LogicalORExpression "||" LogicalANDExpression { $$ = new(driver.pool_) CYLogicalOr($1, $3); }
865 LogicalORExpressionNoIn
866 : LogicalANDExpressionNoIn { $$ = $1; }
867 | LogicalORExpressionNoIn "||" LogicalANDExpressionNoIn { $$ = new(driver.pool_) CYLogicalOr($1, $3); }
870 LogicalORExpressionNoBF
871 : LogicalANDExpressionNoBF { $$ = $1; }
872 | LogicalORExpressionNoBF "||" LogicalANDExpression { $$ = new(driver.pool_) CYLogicalOr($1, $3); }
875 ConditionalExpression
876 : LogicalORExpression { $$ = $1; }
877 | LogicalORExpression "?" AssignmentExpression ":" AssignmentExpression { $$ = new(driver.pool_) CYCondition($1, $3, $5); }
880 ConditionalExpressionNoIn
881 : LogicalORExpressionNoIn { $$ = $1; }
882 | LogicalORExpressionNoIn "?" AssignmentExpression ":" AssignmentExpressionNoIn { $$ = new(driver.pool_) CYCondition($1, $3, $5); }
885 ConditionalExpressionNoBF
886 : LogicalORExpressionNoBF { $$ = $1; }
887 | LogicalORExpressionNoBF "?" AssignmentExpression ":" AssignmentExpression { $$ = new(driver.pool_) CYCondition($1, $3, $5); }
890 AssignmentExpression_
891 : "=" AssignmentExpression { $$ = new(driver.pool_) CYAssign(NULL, $2); }
892 | "*=" AssignmentExpression { $$ = new(driver.pool_) CYMultiplyAssign(NULL, $2); }
893 | "/=" AssignmentExpression { $$ = new(driver.pool_) CYDivideAssign(NULL, $2); }
894 | "%=" AssignmentExpression { $$ = new(driver.pool_) CYModulusAssign(NULL, $2); }
895 | "+=" AssignmentExpression { $$ = new(driver.pool_) CYAddAssign(NULL, $2); }
896 | "-=" AssignmentExpression { $$ = new(driver.pool_) CYSubtractAssign(NULL, $2); }
897 | "<<=" AssignmentExpression { $$ = new(driver.pool_) CYShiftLeftAssign(NULL, $2); }
898 | ">>=" AssignmentExpression { $$ = new(driver.pool_) CYShiftRightSignedAssign(NULL, $2); }
899 | ">>>=" AssignmentExpression { $$ = new(driver.pool_) CYShiftRightUnsignedAssign(NULL, $2); }
900 | "&=" AssignmentExpression { $$ = new(driver.pool_) CYBitwiseAndAssign(NULL, $2); }
901 | "^=" AssignmentExpression { $$ = new(driver.pool_) CYBitwiseXOrAssign(NULL, $2); }
902 | "|=" AssignmentExpression { $$ = new(driver.pool_) CYBitwiseOrAssign(NULL, $2); }
906 : LeftHandSideExpression { $$ = $1; }
907 | AssigneeExpression_ { $$ = $1; }
910 AssigneeExpressionNoBF
911 : LeftHandSideExpressionNoBF { $$ = $1; }
912 | AssigneeExpression_ { $$ = $1; }
916 : ConditionalExpression { $$ = $1; }
917 | AssigneeExpression AssignmentExpression_ { $2->SetLeft($1); $$ = $2; }
920 AssignmentExpressionNoIn
921 : ConditionalExpressionNoIn { $$ = $1; }
922 | AssigneeExpression "=" AssignmentExpressionNoIn { $$ = new(driver.pool_) CYAssign($1, $3); }
923 | AssigneeExpression "*=" AssignmentExpressionNoIn { $$ = new(driver.pool_) CYMultiplyAssign($1, $3); }
924 | AssigneeExpression "/=" AssignmentExpressionNoIn { $$ = new(driver.pool_) CYDivideAssign($1, $3); }
925 | AssigneeExpression "%=" AssignmentExpressionNoIn { $$ = new(driver.pool_) CYModulusAssign($1, $3); }
926 | AssigneeExpression "+=" AssignmentExpressionNoIn { $$ = new(driver.pool_) CYAddAssign($1, $3); }
927 | AssigneeExpression "-=" AssignmentExpressionNoIn { $$ = new(driver.pool_) CYSubtractAssign($1, $3); }
928 | AssigneeExpression "<<=" AssignmentExpressionNoIn { $$ = new(driver.pool_) CYShiftLeftAssign($1, $3); }
929 | AssigneeExpression ">>=" AssignmentExpressionNoIn { $$ = new(driver.pool_) CYShiftRightSignedAssign($1, $3); }
930 | AssigneeExpression ">>>=" AssignmentExpressionNoIn { $$ = new(driver.pool_) CYShiftRightUnsignedAssign($1, $3); }
931 | AssigneeExpression "&=" AssignmentExpressionNoIn { $$ = new(driver.pool_) CYBitwiseAndAssign($1, $3); }
932 | AssigneeExpression "^=" AssignmentExpressionNoIn { $$ = new(driver.pool_) CYBitwiseXOrAssign($1, $3); }
933 | AssigneeExpression "|=" AssignmentExpressionNoIn { $$ = new(driver.pool_) CYBitwiseOrAssign($1, $3); }
936 AssignmentExpressionNoBF
937 : ConditionalExpressionNoBF { $$ = $1; }
938 | AssigneeExpressionNoBF AssignmentExpression_ { $2->SetLeft($1); $$ = $2; }
942 : "," Expression { $$ = new(driver.pool_) CYCompound($2); }
947 : "," ExpressionNoIn { $$ = new(driver.pool_) CYCompound($2); }
952 : Expression { $$ = $1; }
957 : ExpressionNoIn { $$ = $1; }
962 : AssignmentExpression Expression_ { if ($2) { $2->AddPrev($1); $$ = $2; } else $$ = $1; }
966 : AssignmentExpressionNoIn ExpressionNoIn_ { if ($2) { $2->AddPrev($1); $$ = $2; } else $$ = $1; }
970 : AssignmentExpressionNoBF Expression_ { if ($2) { $2->AddPrev($1); $$ = $2; } else $$ = $1; }
975 | VariableStatement { $$ = $1; }
976 | EmptyStatement { $$ = $1; }
977 | ExpressionStatement { $$ = $1; }
978 | IfStatement { $$ = $1; }
979 | IterationStatement { $$ = $1; }
980 | ContinueStatement { $$ = $1; }
981 | BreakStatement { $$ = $1; }
982 | ReturnStatement { $$ = $1; }
983 | WithStatement { $$ = $1; }
984 | LabelledStatement { $$ = $1; }
985 | SwitchStatement { $$ = $1; }
986 | ThrowStatement { $$ = $1; }
987 | TryStatement { $$ = $1; }
991 : "{" StatementListOpt "}" { if ($2) $$ = new(driver.pool_) CYBlock($2); else $$ = new(driver.pool_) CYEmpty(); }
995 : Statement StatementListOpt { $1->SetNext($2); $$ = $1; }
999 : StatementList { $$ = $1; }
1004 : "var" VariableDeclarationList Terminator { $$ = $2; }
1007 VariableDeclarationList_
1008 : "," VariableDeclarationList { $$ = $2; }
1012 VariableDeclarationListNoIn_
1013 : "," VariableDeclarationListNoIn { $$ = $2; }
1017 VariableDeclarationList
1018 : VariableDeclaration VariableDeclarationList_ { $$ = new(driver.pool_) CYDeclarations($1, $2); }
1021 VariableDeclarationListNoIn
1022 : VariableDeclarationNoIn VariableDeclarationListNoIn_ { $$ = new(driver.pool_) CYDeclarations($1, $2); }
1026 : Identifier InitialiserOpt { $$ = new(driver.pool_) CYDeclaration($1, $2); }
1029 VariableDeclarationNoIn
1030 : Identifier InitialiserNoInOpt { $$ = new(driver.pool_) CYDeclaration($1, $2); }
1034 : Initialiser { $$ = $1; }
1039 : InitialiserNoIn { $$ = $1; }
1044 : "=" AssignmentExpression { $$ = $2; }
1048 : "=" AssignmentExpressionNoIn { $$ = $2; }
1052 : ";" { $$ = new(driver.pool_) CYEmpty(); }
1056 : ExpressionNoBF Terminator { $$ = new(driver.pool_) CYExpress($1); }
1060 : "else" Statement { $$ = $2; }
1061 | %prec "if" { $$ = NULL; }
1065 : "if" "(" Expression ")" Statement ElseStatementOpt { $$ = new(driver.pool_) CYIf($3, $5, $6); }
1069 : DoWhileStatement { $$ = $1; }
1070 | WhileStatement { $$ = $1; }
1071 | ForStatement { $$ = $1; }
1072 | ForInStatement { $$ = $1; }
1076 : "do" Statement "while" "(" Expression ")" TerminatorOpt { $$ = new(driver.pool_) CYDoWhile($5, $2); }
1080 : "while" "(" Expression ")" Statement { $$ = new(driver.pool_) CYWhile($3, $5); }
1084 : "for" "(" ForStatementInitialiser ";" ExpressionOpt ";" ExpressionOpt ")" Statement { $$ = new(driver.pool_) CYFor($3, $5, $7, $9); }
1087 ForStatementInitialiser
1088 : ExpressionNoInOpt { $$ = $1; }
1089 | "var" VariableDeclarationListNoIn { $$ = $2; }
1093 : "for" "(" ForInStatementInitialiser "in" Expression ")" Statement { $$ = new(driver.pool_) CYForIn($3, $5, $7); }
1096 ForInStatementInitialiser
1097 : LeftHandSideExpression { $$ = $1; }
1098 | "var" VariableDeclarationNoIn { $$ = $2; }
1102 : "continue" IdentifierOpt Terminator { $$ = new(driver.pool_) CYContinue($2); }
1106 : "break" IdentifierOpt Terminator { $$ = new(driver.pool_) CYBreak($2); }
1110 : "return" ExpressionOpt Terminator { $$ = new(driver.pool_) CYReturn($2); }
1114 : "with" "(" Expression ")" Statement { $$ = new(driver.pool_) CYWith($3, $5); }
1118 : "switch" "(" Expression ")" CaseBlock { $$ = new(driver.pool_) CYSwitch($3, $5); }
1122 : "{" CaseClausesOpt "}" { $$ = $2; }
1126 : CaseClause CaseClausesOpt { $1->SetNext($2); $$ = $1; }
1127 | DefaultClause CaseClausesOpt { $1->SetNext($2); $$ = $1; }
1132 : "case" Expression ":" StatementListOpt { $$ = new(driver.pool_) CYClause($2, $4); }
1136 : "default" ":" StatementListOpt { $$ = new(driver.pool_) CYClause(NULL, $3); }
1140 : Identifier ":" Statement { $3->AddLabel($1); $$ = $3; }
1144 : "throw" Expression Terminator { $$ = new(driver.pool_) CYThrow($2); }
1148 : "try" Block CatchOpt FinallyOpt { $$ = new(driver.pool_) CYTry($2, $3, $4); }
1152 : "catch" "(" Identifier ")" Block { $$ = new(driver.pool_) CYCatch($3, $5); }
1157 : "finally" Block { $$ = $2; }
1162 : "function" Identifier "(" FormalParameterList ")" "{" FunctionBody "}" { $$ = new(driver.pool_) CYFunction($2, $4, $7); }
1166 : "function" IdentifierOpt "(" FormalParameterList ")" "{" FunctionBody "}" { $$ = new(driver.pool_) CYLambda($2, $4, $7); }
1169 FormalParameterList_
1170 : "," FormalParameterList { $$ = $2; }
1175 : Identifier FormalParameterList_ { $$ = new(driver.pool_) CYFunctionParameter($1, $2); }
1180 : SourceElements { $$ = $1; }
1184 : SourceElements { driver.source_ = $1; }
1188 : SourceElement SourceElements { $1->SetNext($2); $$ = $1; }
1193 : Statement { $$ = $1; }
1194 | FunctionDeclaration { $$ = $1; }
1197 /* Objective-C Extensions {{{ */
1199 : ":" MemberExpressionNoBF { $$ = $2; }
1204 : "{" "}" { $$ = NULL; }
1208 : "+" { $$ = false; }
1209 | "-" { $$ = true; }
1213 : "(" Expression ")" { $$ = $2; }
1218 : Word ":" TypeOpt Identifier { $$ = new CYMessageParameter($1, $3, $4); }
1221 MessageParameterListOpt
1222 : MessageParameterList { $$ = $1; }
1226 MessageParameterList
1227 : MessageParameter MessageParameterListOpt { $1->SetNext($2); $$ = $1; }
1231 : MessageParameterList { $$ = $1; }
1232 | Word { $$ = new CYMessageParameter($1, NULL, NULL); }
1235 ClassMessageDeclaration
1236 : MessageScope TypeOpt MessageParameters "{" FunctionBody "}" { $$ = new CYMessage($1, $2, $3, $5); }
1239 ClassMessageDeclarationListOpt
1240 : ClassMessageDeclarationListOpt ClassMessageDeclaration { $2->SetNext($1); $$ = $2; }
1245 : Identifier { $$ = $1; }
1246 | "(" AssignmentExpression ")" { $$ = $2; }
1250 : ClassName { $$ = $1; }
1255 : "@class" ClassNameOpt ClassSuperOpt ClassFieldList ClassMessageDeclarationListOpt "@end" { $$ = new CYClass($2, $3, $4, $5); }
1259 : "@class" ClassName ClassMessageDeclarationListOpt "@end" { $$ = new CYCategory($2, $3); }
1263 : ClassExpression { $$ = $1; }
1271 : "," AssignmentExpression VariadicCall { $$ = new(driver.pool_) CYArgument(NULL, $2, $3); }
1276 : SelectorCall { $$ = $1; }
1277 | VariadicCall { $$ = $1; }
1281 : WordOpt ":" AssignmentExpression SelectorCall_ { $$ = new(driver.pool_) CYArgument($1 ?: new(driver.pool_) CYBlank(), $3, $4); }
1285 : SelectorCall { $$ = $1; }
1286 | Word { $$ = new(driver.pool_) CYArgument($1, NULL); }
1290 : "[" AssignmentExpression SelectorList "]" { $$ = new(driver.pool_) CYSend($2, $3); }
1293 SelectorExpressionOpt
1294 : SelectorExpression_ { $$ = $1; }
1299 : WordOpt ":" SelectorExpressionOpt { $$ = new(driver.pool_) CYSelectorPart($1, true, $3); }
1303 : SelectorExpression_ { $$ = $1; }
1304 | Word { $$ = new(driver.pool_) CYSelectorPart($1, false, NULL); }
1308 : MessageExpression { $$ = $1; }
1309 | "@selector" "(" SelectorExpression ")" { $$ = new CYSelector($3); }
1314 : "*" UnaryExpression { $$ = new(driver.pool_) CYIndirect($2); }
1318 : "&" UnaryExpression { $$ = new(driver.pool_) CYAddressOf($2); }
1322 : "->" Identifier { $$ = new(driver.pool_) CYIndirectMember(NULL, new(driver.pool_) CYString($2)); }
1328 : "if" "(" Expression ")"
1332 : "for" "(" ForInStatementInitialiser "in" Expression ")"
1335 ComprehensionListOpt
1342 : ForComprehension ComprehensionListOpt
1346 : "[" AssignmentExpression ComprehensionList "]"