2 #include "Cycript.tab.hh"
3 #define scanner driver.scanner_
4 #define YYSTACKEXPANDABLE 1
14 CYArgument *argument_;
18 CYCompound *compound_;
19 CYDeclaration *declaration_;
20 CYDeclarations *declarations_;
22 CYExpression *expression_;
24 CYForInitialiser *for_;
25 CYForInInitialiser *forin_;
26 CYIdentifier *identifier_;
31 CYParameter *parameter_;
32 CYProperty *property_;
33 CYSelectorPart *selector_;
35 CYStatement *statement_;
46 int cylex(YYSTYPE *lvalp, cy::location *llocp, void *scanner);
55 @$.begin.filename = @$.end.filename = &driver.filename_;
63 %parse-param { CYDriver &driver }
64 %lex-param { void *scanner }
67 %token AmpersandAmpersand "&&"
68 %token AmpersandEqual "&="
70 %token CarrotEqual "^="
72 %token EqualEqual "=="
73 %token EqualEqualEqual "==="
74 %token Exclamation "!"
75 %token ExclamationEqual "!="
76 %token ExclamationEqualEqual "!=="
78 %token HyphenEqual "-="
79 %token HyphenHyphen "--"
80 %token HyphenHyphen_ "\n--"
81 %token HyphenRight "->"
85 %token LeftLeftEqual "<<="
87 %token PercentEqual "%="
95 %token PlusPlus_ "\n++"
97 %token RightEqual ">="
98 %token RightRight ">>"
99 %token RightRightEqual ">>="
100 %token RightRightRight ">>>"
101 %token RightRightRightEqual ">>>="
103 %token SlashEqual "/="
105 %token StarEqual "*="
115 %token CloseParen ")"
118 %token CloseBrace "}"
120 %token OpenBracket "["
121 %token CloseBracket "]"
123 %token AtSelector "@selector"
124 %token AtImplementation "@implementation"
127 %token <word_> Break "break"
128 %token <word_> Case "case"
129 %token <word_> Catch "catch"
130 %token <word_> Continue "continue"
131 %token <word_> Default "default"
132 %token <word_> Delete "delete"
133 %token <word_> Do "do"
134 %token <word_> Else "else"
135 %token <false_> False "false"
136 %token <word_> Finally "finally"
137 %token <word_> For "for"
138 %token <word_> Function "function"
139 %token <word_> If "if"
140 %token <word_> In "in"
141 %token <word_> InstanceOf "instanceof"
142 %token <word_> New "new"
143 %token <null_> Null "null"
144 %token <word_> Return "return"
145 %token <word_> Switch "switch"
146 %token <this_> This "this"
147 %token <word_> Throw "throw"
148 %token <true_> True "true"
149 %token <word_> Try "try"
150 %token <word_> TypeOf "typeof"
151 %token <word_> Var "var"
152 %token <word_> Void "void"
153 %token <word_> While "while"
154 %token <word_> With "with"
156 %token <word_> Abstract "abstract"
157 %token <word_> Boolean "boolean"
158 %token <word_> Byte "byte"
159 %token <word_> Char "char"
160 %token <word_> Class "class"
161 %token <word_> Const "const"
162 %token <word_> Debugger "debugger"
163 %token <word_> Double "double"
164 %token <word_> Enum "enum"
165 %token <word_> Export "export"
166 %token <word_> Extends "extends"
167 %token <word_> Final "final"
168 %token <word_> Float "float"
169 %token <word_> Goto "goto"
170 %token <word_> Implements "implements"
171 %token <word_> Import "import"
172 %token <word_> Int "int"
173 %token <word_> Interface "interface"
174 %token <word_> Long "long"
175 %token <word_> Native "native"
176 %token <word_> Package "package"
177 %token <word_> Private "private"
178 %token <word_> Protected "protected"
179 %token <word_> Public "public"
180 %token <word_> Short "short"
181 %token <word_> Static "static"
182 %token <word_> Super "super"
183 %token <word_> Synchronized "synchronized"
184 %token <word_> Throws "throws"
185 %token <word_> Transient "transient"
186 %token <word_> Volatile "volatile"
188 %token <identifier_> Identifier
189 %token <number_> NumericLiteral
190 %token <string_> StringLiteral
192 %type <expression_> AdditiveExpression
193 %type <expression_> AdditiveExpressionNoBF
194 %type <argument_> ArgumentList
195 %type <argument_> ArgumentList_
196 %type <argument_> ArgumentListOpt
197 %type <argument_> Arguments
198 %type <literal_> ArrayLiteral
199 %type <expression_> AssignmentExpression
200 %type <expression_> AssignmentExpressionNoBF
201 %type <expression_> AssignmentExpressionNoIn
202 %type <expression_> BitwiseANDExpression
203 %type <expression_> BitwiseANDExpressionNoBF
204 %type <expression_> BitwiseANDExpressionNoIn
205 %type <statement_> Block
206 %type <boolean_> BooleanLiteral
207 %type <expression_> BitwiseORExpression
208 %type <expression_> BitwiseORExpressionNoBF
209 %type <expression_> BitwiseORExpressionNoIn
210 %type <expression_> BitwiseXORExpression
211 %type <expression_> BitwiseXORExpressionNoBF
212 %type <expression_> BitwiseXORExpressionNoIn
213 %type <statement_> BreakStatement
214 %type <expression_> CallExpression
215 %type <expression_> CallExpressionNoBF
216 %type <clause_> CaseBlock
217 %type <clause_> CaseClause
218 %type <clause_> CaseClausesOpt
219 %type <catch_> CatchOpt
220 %type <expression_> ConditionalExpression
221 %type <expression_> ConditionalExpressionNoBF
222 %type <expression_> ConditionalExpressionNoIn
223 %type <statement_> ContinueStatement
224 %type <clause_> DefaultClause
225 %type <statement_> DoWhileStatement
226 %type <expression_> Element
227 %type <expression_> ElementOpt
228 %type <element_> ElementList
229 %type <element_> ElementListOpt
230 %type <statement_> ElseStatementOpt
231 %type <statement_> EmptyStatement
232 %type <expression_> EqualityExpression
233 %type <expression_> EqualityExpressionNoBF
234 %type <expression_> EqualityExpressionNoIn
235 %type <expression_> Expression
236 %type <expression_> ExpressionOpt
237 %type <compound_> Expression_
238 %type <expression_> ExpressionNoBF
239 %type <expression_> ExpressionNoIn
240 %type <compound_> ExpressionNoIn_
241 %type <expression_> ExpressionNoInOpt
242 %type <statement_> ExpressionStatement
243 %type <statement_> FinallyOpt
244 %type <statement_> ForStatement
245 %type <for_> ForStatementInitialiser
246 %type <statement_> ForInStatement
247 %type <forin_> ForInStatementInitialiser
248 %type <parameter_> FormalParameterList
249 %type <parameter_> FormalParameterList_
250 %type <source_> FunctionBody
251 %type <source_> FunctionDeclaration
252 %type <expression_> FunctionExpression
253 %type <identifier_> IdentifierOpt
254 %type <statement_> IfStatement
255 %type <expression_> Initialiser
256 %type <expression_> InitialiserOpt
257 %type <expression_> InitialiserNoIn
258 %type <expression_> InitialiserNoInOpt
259 %type <statement_> IterationStatement
260 %type <statement_> LabelledStatement
261 %type <expression_> LeftHandSideExpression
262 %type <expression_> LeftHandSideExpression_
263 %type <expression_> LeftHandSideExpressionNoBF
264 %type <literal_> Literal
265 %type <expression_> LogicalANDExpression
266 %type <expression_> LogicalANDExpressionNoBF
267 %type <expression_> LogicalANDExpressionNoIn
268 %type <expression_> LogicalORExpression
269 %type <expression_> LogicalORExpressionNoBF
270 %type <expression_> LogicalORExpressionNoIn
271 %type <expression_> MemberExpression
272 %type <expression_> MemberExpression_
273 %type <expression_> MemberExpressionNoBF
274 %type <expression_> MultiplicativeExpression
275 %type <expression_> MultiplicativeExpressionNoBF
276 %type <expression_> NewExpression
277 %type <expression_> NewExpression_
278 %type <expression_> NewExpressionNoBF
279 %type <null_> NullLiteral
280 %type <literal_> ObjectLiteral
281 %type <expression_> PostfixExpression
282 %type <expression_> PostfixExpressionNoBF
283 %type <expression_> PrimaryExpression
284 %type <expression_> PrimaryExpression_
285 %type <expression_> PrimaryExpressionNoBF
286 %type <source_> Program
287 %type <name_> PropertyName
288 %type <property_> PropertyNameAndValueList
289 %type <property_> PropertyNameAndValueList_
290 %type <property_> PropertyNameAndValueListOpt
291 %type <expression_> RelationalExpression
292 %type <expression_> RelationalExpressionNoBF
293 %type <expression_> RelationalExpressionNoIn
294 %type <statement_> ReturnStatement
295 %type <selector_> SelectorExpression
296 %type <selector_> SelectorExpression_
297 %type <selector_> SelectorExpressionOpt
298 %type <expression_> ShiftExpression
299 %type <expression_> ShiftExpressionNoBF
300 %type <source_> SourceElement
301 %type <source_> SourceElements
302 %type <statement_> Statement
303 %type <statement_> StatementList
304 %type <statement_> StatementListOpt
305 %type <statement_> SwitchStatement
306 %type <statement_> ThrowStatement
307 %type <statement_> TryStatement
308 %type <expression_> UnaryExpression
309 %type <expression_> UnaryExpression_
310 %type <expression_> UnaryExpressionNoBF
311 %type <declaration_> VariableDeclaration
312 %type <declaration_> VariableDeclarationNoIn
313 %type <declarations_> VariableDeclarationList
314 %type <declarations_> VariableDeclarationList_
315 %type <declarations_> VariableDeclarationListNoIn
316 %type <declarations_> VariableDeclarationListNoIn_
317 %type <statement_> VariableStatement
318 %type <statement_> WhileStatement
319 %type <statement_> WithStatement
321 %type <word_> WordOpt
323 %type <expression_> MessageExpression
324 %type <argument_> SelectorCall
325 %type <argument_> SelectorCall_
326 %type <argument_> SelectorList
327 %type <argument_> VariadicCall
339 | error { yyerrok; driver.errors_.pop_back(); }
345 | error { if (yychar != 0 && yychar != cy::parser::token::CloseBrace && !yylval.newline_) YYABORT; else { yyerrok; driver.errors_.pop_back(); } }
364 : Identifier { $$ = $1; }
365 | "abstract" { $$ = $1; }
366 | "boolean" { $$ = $1; }
367 | "break" NewLineOpt { $$ = $1; }
368 | "byte" { $$ = $1; }
369 | "case" { $$ = $1; }
370 | "catch" { $$ = $1; }
371 | "char" { $$ = $1; }
372 | "class" { $$ = $1; }
373 | "const" { $$ = $1; }
374 | "continue" NewLineOpt { $$ = $1; }
375 | "debugger" { $$ = $1; }
376 | "default" { $$ = $1; }
377 | "delete" { $$ = $1; }
379 | "double" { $$ = $1; }
380 | "else" { $$ = $1; }
381 | "enum" { $$ = $1; }
382 | "export" { $$ = $1; }
383 | "extends" { $$ = $1; }
384 | "false" { $$ = $1; }
385 | "final" { $$ = $1; }
386 | "finally" { $$ = $1; }
387 | "float" { $$ = $1; }
389 | "function" { $$ = $1; }
390 | "goto" { $$ = $1; }
392 | "implements" { $$ = $1; }
393 | "import" { $$ = $1; }
394 /* XXX: | "in" { $$ = $1; } */
395 /* XXX: | "instanceof" { $$ = $1; } */
397 | "interface" { $$ = $1; }
398 | "long" { $$ = $1; }
399 | "native" { $$ = $1; }
401 | "null" { $$ = $1; }
402 | "package" { $$ = $1; }
403 | "private" { $$ = $1; }
404 | "protected" { $$ = $1; }
405 | "public" { $$ = $1; }
406 | "return" NewLineOpt { $$ = $1; }
407 | "short" { $$ = $1; }
408 | "static" { $$ = $1; }
409 | "super" { $$ = $1; }
410 | "switch" { $$ = $1; }
411 | "synchronized" { $$ = $1; }
412 | "this" { $$ = $1; }
413 | "throw" NewLineOpt { $$ = $1; }
414 | "throws" { $$ = $1; }
415 | "transient" { $$ = $1; }
416 | "true" { $$ = $1; }
418 | "typeof" { $$ = $1; }
420 | "void" { $$ = $1; }
421 | "volatile" { $$ = $1; }
422 | "while" { $$ = $1; }
423 | "with" { $$ = $1; }
427 : Identifier { $$ = $1; }
432 : NullLiteral { $$ = $1; }
433 | BooleanLiteral { $$ = $1; }
434 | NumericLiteral { $$ = $1; }
435 | StringLiteral { $$ = $1; }
439 : "null" { $$ = $1; }
443 : "true" { $$ = $1; }
444 | "false" { $$ = $1; }
447 /* 11.1 Primary Expressions {{{ */
449 : "this" { $$ = $1; }
450 | Identifier { $$ = new(driver.pool_) CYVariable($1); }
451 | Literal { $$ = $1; }
452 | ArrayLiteral { $$ = $1; }
453 | "(" Expression ")" { $$ = $2; }
457 : ObjectLiteral { $$ = $1; }
458 | PrimaryExpression_ { $$ = $1; }
461 PrimaryExpressionNoBF
462 : PrimaryExpression_ { $$ = $1; }
465 /* 11.1.4 Array Initialiser {{{ */
467 : "[" ElementListOpt "]" { $$ = new(driver.pool_) CYArray($2); }
471 : AssignmentExpression { $$ = $1; }
475 : Element { $$ = $1; }
480 : ElementList { $$ = $1; }
485 : ElementOpt "," ElementListOpt { $$ = new(driver.pool_) CYElement($1, $3); }
486 | Element { $$ = new(driver.pool_) CYElement($1, NULL); }
489 /* 11.1.5 Object Initialiser {{{ */
491 : "{" PropertyNameAndValueListOpt "}" { $$ = new(driver.pool_) CYObject($2); }
494 PropertyNameAndValueList_
495 : "," PropertyNameAndValueList { $$ = $2; }
496 | CommaOpt { $$ = NULL; }
499 PropertyNameAndValueListOpt
500 : PropertyNameAndValueList { $$ = $1; }
504 PropertyNameAndValueList
505 : PropertyName ":" AssignmentExpression PropertyNameAndValueList_ { $$ = new(driver.pool_) CYProperty($1, $3, $4); }
509 : Identifier { $$ = $1; }
510 | StringLiteral { $$ = $1; }
511 | NumericLiteral { $$ = $1; }
516 : "new" MemberExpression Arguments { $$ = new(driver.pool_) CYNew($2, $3); }
520 : PrimaryExpression { $$ = $1; }
521 | FunctionExpression { $$ = $1; }
522 | MemberExpression "[" Expression "]" { $$ = new(driver.pool_) CYMember($1, $3); }
523 | MemberExpression "." Identifier { $$ = new(driver.pool_) CYMember($1, new(driver.pool_) CYString($3)); }
524 | MemberExpression_ { $$ = $1; }
528 : PrimaryExpressionNoBF { $$ = $1; }
529 | MemberExpressionNoBF "[" Expression "]" { $$ = new(driver.pool_) CYMember($1, $3); }
530 | MemberExpressionNoBF "." Identifier { $$ = new(driver.pool_) CYMember($1, new(driver.pool_) CYString($3)); }
531 | MemberExpression_ { $$ = $1; }
535 : "new" NewExpression { $$ = new(driver.pool_) CYNew($2, NULL); }
539 : MemberExpression { $$ = $1; }
540 | NewExpression_ { $$ = $1; }
544 : MemberExpressionNoBF { $$ = $1; }
545 | NewExpression_ { $$ = $1; }
549 : MemberExpression Arguments { $$ = new(driver.pool_) CYCall($1, $2); }
550 | CallExpression Arguments { $$ = new(driver.pool_) CYCall($1, $2); }
551 | CallExpression "[" Expression "]" { $$ = new(driver.pool_) CYMember($1, $3); }
552 | CallExpression "." Identifier { $$ = new(driver.pool_) CYMember($1, new(driver.pool_) CYString($3)); }
556 : MemberExpressionNoBF Arguments { $$ = new(driver.pool_) CYCall($1, $2); }
557 | CallExpressionNoBF Arguments { $$ = new(driver.pool_) CYCall($1, $2); }
558 | CallExpressionNoBF "[" Expression "]" { $$ = new(driver.pool_) CYMember($1, $3); }
559 | CallExpressionNoBF "." Identifier { $$ = new(driver.pool_) CYMember($1, new(driver.pool_) CYString($3)); }
563 : "," ArgumentList { $$ = $2; }
568 : ArgumentList { $$ = $1; }
573 : AssignmentExpression ArgumentList_ { $$ = new(driver.pool_) CYArgument(NULL, $1, $2); }
577 : "(" ArgumentListOpt ")" { $$ = $2; }
580 LeftHandSideExpression
581 : NewExpression { $$ = $1; }
582 | CallExpression { $$ = $1; }
583 | LeftHandSideExpression_ { $$ = $1; }
586 LeftHandSideExpressionNoBF
587 : NewExpressionNoBF { $$ = $1; }
588 | CallExpressionNoBF { $$ = $1; }
589 | LeftHandSideExpression_ { $$ = $1; }
593 : LeftHandSideExpression { $$ = $1; }
594 | LeftHandSideExpression "++" { $$ = new(driver.pool_) CYPostIncrement($1); }
595 | LeftHandSideExpression "--" { $$ = new(driver.pool_) CYPostDecrement($1); }
598 PostfixExpressionNoBF
599 : LeftHandSideExpressionNoBF { $$ = $1; }
600 | LeftHandSideExpressionNoBF "++" { $$ = new(driver.pool_) CYPostIncrement($1); }
601 | LeftHandSideExpressionNoBF "--" { $$ = new(driver.pool_) CYPostDecrement($1); }
605 : "delete" UnaryExpression { $$ = new(driver.pool_) CYDelete($2); }
606 | "void" UnaryExpression { $$ = new(driver.pool_) CYVoid($2); }
607 | "typeof" UnaryExpression { $$ = new(driver.pool_) CYTypeOf($2); }
608 | "++" UnaryExpression { $$ = new(driver.pool_) CYPreIncrement($2); }
609 | "\n++" UnaryExpression { $$ = new(driver.pool_) CYPreIncrement($2); }
610 | "--" UnaryExpression { $$ = new(driver.pool_) CYPreDecrement($2); }
611 | "\n--" UnaryExpression { $$ = new(driver.pool_) CYPreDecrement($2); }
612 | "+" UnaryExpression { $$ = $2; }
613 | "-" UnaryExpression { $$ = new(driver.pool_) CYNegate($2); }
614 | "~" UnaryExpression { $$ = new(driver.pool_) CYBitwiseNot($2); }
615 | "!" UnaryExpression { $$ = new(driver.pool_) CYLogicalNot($2); }
619 : PostfixExpression { $$ = $1; }
620 | UnaryExpression_ { $$ = $1; }
624 : PostfixExpressionNoBF { $$ = $1; }
625 | UnaryExpression_ { $$ = $1; }
628 MultiplicativeExpression
629 : UnaryExpression { $$ = $1; }
630 | MultiplicativeExpression "*" UnaryExpression { $$ = new(driver.pool_) CYMultiply($1, $3); }
631 | MultiplicativeExpression "/" UnaryExpression { $$ = new(driver.pool_) CYDivide($1, $3); }
632 | MultiplicativeExpression "%" UnaryExpression { $$ = new(driver.pool_) CYModulus($1, $3); }
635 MultiplicativeExpressionNoBF
636 : UnaryExpressionNoBF { $$ = $1; }
637 | MultiplicativeExpressionNoBF "*" UnaryExpression { $$ = new(driver.pool_) CYMultiply($1, $3); }
638 | MultiplicativeExpressionNoBF "/" UnaryExpression { $$ = new(driver.pool_) CYDivide($1, $3); }
639 | MultiplicativeExpressionNoBF "%" UnaryExpression { $$ = new(driver.pool_) CYModulus($1, $3); }
643 : MultiplicativeExpression { $$ = $1; }
644 | AdditiveExpression "+" MultiplicativeExpression { $$ = new(driver.pool_) CYAdd($1, $3); }
645 | AdditiveExpression "-" MultiplicativeExpression { $$ = new(driver.pool_) CYSubtract($1, $3); }
648 AdditiveExpressionNoBF
649 : MultiplicativeExpressionNoBF { $$ = $1; }
650 | AdditiveExpressionNoBF "+" MultiplicativeExpression { $$ = new(driver.pool_) CYAdd($1, $3); }
651 | AdditiveExpressionNoBF "-" MultiplicativeExpression { $$ = new(driver.pool_) CYSubtract($1, $3); }
655 : AdditiveExpression { $$ = $1; }
656 | ShiftExpression "<<" AdditiveExpression { $$ = new(driver.pool_) CYShiftLeft($1, $3); }
657 | ShiftExpression ">>" AdditiveExpression { $$ = new(driver.pool_) CYShiftRightSigned($1, $3); }
658 | ShiftExpression ">>>" AdditiveExpression { $$ = new(driver.pool_) CYShiftRightUnsigned($1, $3); }
662 : AdditiveExpressionNoBF { $$ = $1; }
663 | ShiftExpressionNoBF "<<" AdditiveExpression { $$ = new(driver.pool_) CYShiftLeft($1, $3); }
664 | ShiftExpressionNoBF ">>" AdditiveExpression { $$ = new(driver.pool_) CYShiftRightSigned($1, $3); }
665 | ShiftExpressionNoBF ">>>" AdditiveExpression { $$ = new(driver.pool_) CYShiftRightUnsigned($1, $3); }
669 : ShiftExpression { $$ = $1; }
670 | RelationalExpression "<" ShiftExpression { $$ = new(driver.pool_) CYLess($1, $3); }
671 | RelationalExpression ">" ShiftExpression { $$ = new(driver.pool_) CYGreater($1, $3); }
672 | RelationalExpression "<=" ShiftExpression { $$ = new(driver.pool_) CYLessOrEqual($1, $3); }
673 | RelationalExpression ">=" ShiftExpression { $$ = new(driver.pool_) CYGreaterOrEqual($1, $3); }
674 | RelationalExpression "instanceof" ShiftExpression { $$ = new(driver.pool_) CYInstanceOf($1, $3); }
675 | RelationalExpression "in" ShiftExpression { $$ = new(driver.pool_) CYIn($1, $3); }
678 RelationalExpressionNoIn
679 : ShiftExpression { $$ = $1; }
680 | RelationalExpressionNoIn "<" ShiftExpression { $$ = new(driver.pool_) CYLess($1, $3); }
681 | RelationalExpressionNoIn ">" ShiftExpression { $$ = new(driver.pool_) CYGreater($1, $3); }
682 | RelationalExpressionNoIn "<=" ShiftExpression { $$ = new(driver.pool_) CYLessOrEqual($1, $3); }
683 | RelationalExpressionNoIn ">=" ShiftExpression { $$ = new(driver.pool_) CYGreaterOrEqual($1, $3); }
684 | RelationalExpressionNoIn "instanceof" ShiftExpression { $$ = new(driver.pool_) CYInstanceOf($1, $3); }
687 RelationalExpressionNoBF
688 : ShiftExpressionNoBF { $$ = $1; }
689 | RelationalExpressionNoBF "<" ShiftExpression { $$ = new(driver.pool_) CYLess($1, $3); }
690 | RelationalExpressionNoBF ">" ShiftExpression { $$ = new(driver.pool_) CYGreater($1, $3); }
691 | RelationalExpressionNoBF "<=" ShiftExpression { $$ = new(driver.pool_) CYLessOrEqual($1, $3); }
692 | RelationalExpressionNoBF ">=" ShiftExpression { $$ = new(driver.pool_) CYGreaterOrEqual($1, $3); }
693 | RelationalExpressionNoBF "instanceof" ShiftExpression { $$ = new(driver.pool_) CYInstanceOf($1, $3); }
694 | RelationalExpressionNoBF "in" ShiftExpression { $$ = new(driver.pool_) CYIn($1, $3); }
698 : RelationalExpression { $$ = $1; }
699 | EqualityExpression "==" RelationalExpression { $$ = new(driver.pool_) CYEqual($1, $3); }
700 | EqualityExpression "!=" RelationalExpression { $$ = new(driver.pool_) CYNotEqual($1, $3); }
701 | EqualityExpression "===" RelationalExpression { $$ = new(driver.pool_) CYIdentical($1, $3); }
702 | EqualityExpression "!==" RelationalExpression { $$ = new(driver.pool_) CYNotIdentical($1, $3); }
705 EqualityExpressionNoIn
706 : RelationalExpressionNoIn { $$ = $1; }
707 | EqualityExpressionNoIn "==" RelationalExpressionNoIn { $$ = new(driver.pool_) CYEqual($1, $3); }
708 | EqualityExpressionNoIn "!=" RelationalExpressionNoIn { $$ = new(driver.pool_) CYNotEqual($1, $3); }
709 | EqualityExpressionNoIn "===" RelationalExpressionNoIn { $$ = new(driver.pool_) CYIdentical($1, $3); }
710 | EqualityExpressionNoIn "!==" RelationalExpressionNoIn { $$ = new(driver.pool_) CYNotIdentical($1, $3); }
713 EqualityExpressionNoBF
714 : RelationalExpressionNoBF { $$ = $1; }
715 | EqualityExpressionNoBF "==" RelationalExpression { $$ = new(driver.pool_) CYEqual($1, $3); }
716 | EqualityExpressionNoBF "!=" RelationalExpression { $$ = new(driver.pool_) CYNotEqual($1, $3); }
717 | EqualityExpressionNoBF "===" RelationalExpression { $$ = new(driver.pool_) CYIdentical($1, $3); }
718 | EqualityExpressionNoBF "!==" RelationalExpression { $$ = new(driver.pool_) CYNotIdentical($1, $3); }
722 : EqualityExpression { $$ = $1; }
723 | BitwiseANDExpression "&" EqualityExpression { $$ = new(driver.pool_) CYBitwiseAnd($1, $3); }
726 BitwiseANDExpressionNoIn
727 : EqualityExpressionNoIn { $$ = $1; }
728 | BitwiseANDExpressionNoIn "&" EqualityExpressionNoIn { $$ = new(driver.pool_) CYBitwiseAnd($1, $3); }
731 BitwiseANDExpressionNoBF
732 : EqualityExpressionNoBF { $$ = $1; }
733 | BitwiseANDExpressionNoBF "&" EqualityExpression { $$ = new(driver.pool_) CYBitwiseAnd($1, $3); }
737 : BitwiseANDExpression { $$ = $1; }
738 | BitwiseXORExpression "^" BitwiseANDExpression { $$ = new(driver.pool_) CYBitwiseXOr($1, $3); }
741 BitwiseXORExpressionNoIn
742 : BitwiseANDExpressionNoIn { $$ = $1; }
743 | BitwiseXORExpressionNoIn "^" BitwiseANDExpressionNoIn { $$ = new(driver.pool_) CYBitwiseXOr($1, $3); }
746 BitwiseXORExpressionNoBF
747 : BitwiseANDExpressionNoBF { $$ = $1; }
748 | BitwiseXORExpressionNoBF "^" BitwiseANDExpression { $$ = new(driver.pool_) CYBitwiseXOr($1, $3); }
752 : BitwiseXORExpression { $$ = $1; }
753 | BitwiseORExpression "|" BitwiseXORExpression { $$ = new(driver.pool_) CYBitwiseOr($1, $3); }
756 BitwiseORExpressionNoIn
757 : BitwiseXORExpressionNoIn { $$ = $1; }
758 | BitwiseORExpressionNoIn "|" BitwiseXORExpressionNoIn { $$ = new(driver.pool_) CYBitwiseOr($1, $3); }
761 BitwiseORExpressionNoBF
762 : BitwiseXORExpressionNoBF { $$ = $1; }
763 | BitwiseORExpressionNoBF "|" BitwiseXORExpression { $$ = new(driver.pool_) CYBitwiseOr($1, $3); }
767 : BitwiseORExpression { $$ = $1; }
768 | LogicalANDExpression "&&" BitwiseORExpression { $$ = new(driver.pool_) CYLogicalAnd($1, $3); }
771 LogicalANDExpressionNoIn
772 : BitwiseORExpressionNoIn { $$ = $1; }
773 | LogicalANDExpressionNoIn "&&" BitwiseORExpressionNoIn { $$ = new(driver.pool_) CYLogicalAnd($1, $3); }
776 LogicalANDExpressionNoBF
777 : BitwiseORExpressionNoBF { $$ = $1; }
778 | LogicalANDExpressionNoBF "&&" BitwiseORExpression { $$ = new(driver.pool_) CYLogicalAnd($1, $3); }
782 : LogicalANDExpression { $$ = $1; }
783 | LogicalORExpression "||" LogicalANDExpression { $$ = new(driver.pool_) CYLogicalOr($1, $3); }
786 LogicalORExpressionNoIn
787 : LogicalANDExpressionNoIn { $$ = $1; }
788 | LogicalORExpressionNoIn "||" LogicalANDExpressionNoIn { $$ = new(driver.pool_) CYLogicalOr($1, $3); }
791 LogicalORExpressionNoBF
792 : LogicalANDExpressionNoBF { $$ = $1; }
793 | LogicalORExpressionNoBF "||" LogicalANDExpression { $$ = new(driver.pool_) CYLogicalOr($1, $3); }
796 ConditionalExpression
797 : LogicalORExpression { $$ = $1; }
798 | LogicalORExpression "?" AssignmentExpression ":" AssignmentExpression { $$ = new(driver.pool_) CYCondition($1, $3, $5); }
801 ConditionalExpressionNoIn
802 : LogicalORExpressionNoIn { $$ = $1; }
803 | LogicalORExpressionNoIn "?" AssignmentExpression ":" AssignmentExpressionNoIn { $$ = new(driver.pool_) CYCondition($1, $3, $5); }
806 ConditionalExpressionNoBF
807 : LogicalORExpressionNoBF { $$ = $1; }
808 | LogicalORExpressionNoBF "?" AssignmentExpression ":" AssignmentExpression { $$ = new(driver.pool_) CYCondition($1, $3, $5); }
812 : ConditionalExpression { $$ = $1; }
813 | LeftHandSideExpression "=" AssignmentExpression { $$ = new(driver.pool_) CYAssign($1, $3); }
814 | LeftHandSideExpression "*=" AssignmentExpression { $$ = new(driver.pool_) CYMultiplyAssign($1, $3); }
815 | LeftHandSideExpression "/=" AssignmentExpression { $$ = new(driver.pool_) CYDivideAssign($1, $3); }
816 | LeftHandSideExpression "%=" AssignmentExpression { $$ = new(driver.pool_) CYModulusAssign($1, $3); }
817 | LeftHandSideExpression "+=" AssignmentExpression { $$ = new(driver.pool_) CYAddAssign($1, $3); }
818 | LeftHandSideExpression "-=" AssignmentExpression { $$ = new(driver.pool_) CYSubtractAssign($1, $3); }
819 | LeftHandSideExpression "<<=" AssignmentExpression { $$ = new(driver.pool_) CYShiftLeftAssign($1, $3); }
820 | LeftHandSideExpression ">>=" AssignmentExpression { $$ = new(driver.pool_) CYShiftRightSignedAssign($1, $3); }
821 | LeftHandSideExpression ">>>=" AssignmentExpression { $$ = new(driver.pool_) CYShiftRightUnsignedAssign($1, $3); }
822 | LeftHandSideExpression "&=" AssignmentExpression { $$ = new(driver.pool_) CYBitwiseAndAssign($1, $3); }
823 | LeftHandSideExpression "^=" AssignmentExpression { $$ = new(driver.pool_) CYBitwiseXOrAssign($1, $3); }
824 | LeftHandSideExpression "|=" AssignmentExpression { $$ = new(driver.pool_) CYBitwiseOrAssign($1, $3); }
827 AssignmentExpressionNoIn
828 : ConditionalExpressionNoIn { $$ = $1; }
829 | LeftHandSideExpression "=" AssignmentExpressionNoIn { $$ = new(driver.pool_) CYAssign($1, $3); }
830 | LeftHandSideExpression "*=" AssignmentExpressionNoIn { $$ = new(driver.pool_) CYMultiplyAssign($1, $3); }
831 | LeftHandSideExpression "/=" AssignmentExpressionNoIn { $$ = new(driver.pool_) CYDivideAssign($1, $3); }
832 | LeftHandSideExpression "%=" AssignmentExpressionNoIn { $$ = new(driver.pool_) CYModulusAssign($1, $3); }
833 | LeftHandSideExpression "+=" AssignmentExpressionNoIn { $$ = new(driver.pool_) CYAddAssign($1, $3); }
834 | LeftHandSideExpression "-=" AssignmentExpressionNoIn { $$ = new(driver.pool_) CYSubtractAssign($1, $3); }
835 | LeftHandSideExpression "<<=" AssignmentExpressionNoIn { $$ = new(driver.pool_) CYShiftLeftAssign($1, $3); }
836 | LeftHandSideExpression ">>=" AssignmentExpressionNoIn { $$ = new(driver.pool_) CYShiftRightSignedAssign($1, $3); }
837 | LeftHandSideExpression ">>>=" AssignmentExpressionNoIn { $$ = new(driver.pool_) CYShiftRightUnsignedAssign($1, $3); }
838 | LeftHandSideExpression "&=" AssignmentExpressionNoIn { $$ = new(driver.pool_) CYBitwiseAndAssign($1, $3); }
839 | LeftHandSideExpression "^=" AssignmentExpressionNoIn { $$ = new(driver.pool_) CYBitwiseXOrAssign($1, $3); }
840 | LeftHandSideExpression "|=" AssignmentExpressionNoIn { $$ = new(driver.pool_) CYBitwiseOrAssign($1, $3); }
843 AssignmentExpressionNoBF
844 : ConditionalExpressionNoBF { $$ = $1; }
845 | LeftHandSideExpressionNoBF "=" AssignmentExpression { $$ = new(driver.pool_) CYAssign($1, $3); }
846 | LeftHandSideExpressionNoBF "*=" AssignmentExpression { $$ = new(driver.pool_) CYMultiplyAssign($1, $3); }
847 | LeftHandSideExpressionNoBF "/=" AssignmentExpression { $$ = new(driver.pool_) CYDivideAssign($1, $3); }
848 | LeftHandSideExpressionNoBF "%=" AssignmentExpression { $$ = new(driver.pool_) CYModulusAssign($1, $3); }
849 | LeftHandSideExpressionNoBF "+=" AssignmentExpression { $$ = new(driver.pool_) CYAddAssign($1, $3); }
850 | LeftHandSideExpressionNoBF "-=" AssignmentExpression { $$ = new(driver.pool_) CYSubtractAssign($1, $3); }
851 | LeftHandSideExpressionNoBF "<<=" AssignmentExpression { $$ = new(driver.pool_) CYShiftLeftAssign($1, $3); }
852 | LeftHandSideExpressionNoBF ">>=" AssignmentExpression { $$ = new(driver.pool_) CYShiftRightSignedAssign($1, $3); }
853 | LeftHandSideExpressionNoBF ">>>=" AssignmentExpression { $$ = new(driver.pool_) CYShiftRightUnsignedAssign($1, $3); }
854 | LeftHandSideExpressionNoBF "&=" AssignmentExpression { $$ = new(driver.pool_) CYBitwiseAndAssign($1, $3); }
855 | LeftHandSideExpressionNoBF "^=" AssignmentExpression { $$ = new(driver.pool_) CYBitwiseXOrAssign($1, $3); }
856 | LeftHandSideExpressionNoBF "|=" AssignmentExpression { $$ = new(driver.pool_) CYBitwiseOrAssign($1, $3); }
860 : "," Expression { $$ = new(driver.pool_) CYCompound($2); }
865 : "," ExpressionNoIn { $$ = new(driver.pool_) CYCompound($2); }
870 : Expression { $$ = $1; }
875 : ExpressionNoIn { $$ = $1; }
880 : AssignmentExpression Expression_ { if ($2) { $2->AddPrev($1); $$ = $2; } else $$ = $1; }
884 : AssignmentExpressionNoIn ExpressionNoIn_ { if ($2) { $2->AddPrev($1); $$ = $2; } else $$ = $1; }
888 : AssignmentExpressionNoBF Expression_ { if ($2) { $2->AddPrev($1); $$ = $2; } else $$ = $1; }
893 | VariableStatement { $$ = $1; }
894 | EmptyStatement { $$ = $1; }
895 | ExpressionStatement { $$ = $1; }
896 | IfStatement { $$ = $1; }
897 | IterationStatement { $$ = $1; }
898 | ContinueStatement { $$ = $1; }
899 | BreakStatement { $$ = $1; }
900 | ReturnStatement { $$ = $1; }
901 | WithStatement { $$ = $1; }
902 | LabelledStatement { $$ = $1; }
903 | SwitchStatement { $$ = $1; }
904 | ThrowStatement { $$ = $1; }
905 | TryStatement { $$ = $1; }
909 : "{" StatementListOpt "}" { $$ = $2 ?: new(driver.pool_) CYEmpty(); }
913 : Statement StatementListOpt { $1->SetNext($2); $$ = $1; }
917 : StatementList { $$ = $1; }
922 : "var" VariableDeclarationList Terminator { $$ = $2; }
925 VariableDeclarationList_
926 : "," VariableDeclarationList { $$ = $2; }
930 VariableDeclarationListNoIn_
931 : "," VariableDeclarationListNoIn { $$ = $2; }
935 VariableDeclarationList
936 : VariableDeclaration VariableDeclarationList_ { $$ = new(driver.pool_) CYDeclarations($1, $2); }
939 VariableDeclarationListNoIn
940 : VariableDeclarationNoIn VariableDeclarationListNoIn_ { $$ = new(driver.pool_) CYDeclarations($1, $2); }
944 : Identifier InitialiserOpt { $$ = new(driver.pool_) CYDeclaration($1, $2); }
947 VariableDeclarationNoIn
948 : Identifier InitialiserNoInOpt { $$ = new(driver.pool_) CYDeclaration($1, $2); }
952 : Initialiser { $$ = $1; }
957 : InitialiserNoIn { $$ = $1; }
962 : "=" AssignmentExpression { $$ = $2; }
966 : "=" AssignmentExpressionNoIn { $$ = $2; }
970 : ";" { $$ = new(driver.pool_) CYEmpty(); }
974 : ExpressionNoBF Terminator { $$ = new(driver.pool_) CYExpress($1); }
978 : "else" Statement { $$ = $2; }
979 | %prec "if" { $$ = NULL; }
983 : "if" "(" Expression ")" Statement ElseStatementOpt { $$ = new(driver.pool_) CYIf($3, $5, $6); }
987 : DoWhileStatement { $$ = $1; }
988 | WhileStatement { $$ = $1; }
989 | ForStatement { $$ = $1; }
990 | ForInStatement { $$ = $1; }
994 : "do" Statement "while" "(" Expression ")" TerminatorOpt { $$ = new(driver.pool_) CYDoWhile($5, $2); }
998 : "while" "(" Expression ")" Statement { $$ = new(driver.pool_) CYWhile($3, $5); }
1002 : "for" "(" ForStatementInitialiser ";" ExpressionOpt ";" ExpressionOpt ")" Statement { $$ = new(driver.pool_) CYFor($3, $5, $7, $9); }
1005 ForStatementInitialiser
1006 : ExpressionNoInOpt { $$ = $1; }
1007 | "var" VariableDeclarationListNoIn { $$ = $2; }
1011 : "for" "(" ForInStatementInitialiser "in" Expression ")" Statement { $$ = new(driver.pool_) CYForIn($3, $5, $7); }
1014 ForInStatementInitialiser
1015 : LeftHandSideExpression { $$ = $1; }
1016 | "var" VariableDeclarationNoIn { $$ = $2; }
1020 : "continue" IdentifierOpt Terminator { $$ = new(driver.pool_) CYContinue($2); }
1024 : "break" IdentifierOpt Terminator { $$ = new(driver.pool_) CYBreak($2); }
1028 : "return" ExpressionOpt Terminator { $$ = new(driver.pool_) CYReturn($2); }
1032 : "with" "(" Expression ")" Statement { $$ = new(driver.pool_) CYWith($3, $5); }
1036 : "switch" "(" Expression ")" CaseBlock { $$ = new(driver.pool_) CYSwitch($3, $5); }
1040 : "{" CaseClausesOpt "}" { $$ = $2; }
1044 : CaseClause CaseClausesOpt { $1->SetNext($2); $$ = $1; }
1045 | DefaultClause CaseClausesOpt { $1->SetNext($2); $$ = $1; }
1050 : "case" Expression ":" StatementListOpt { $$ = new(driver.pool_) CYClause($2, $4); }
1054 : "default" ":" StatementListOpt { $$ = new(driver.pool_) CYClause(NULL, $3); }
1058 : Identifier ":" Statement { $3->AddLabel($1); $$ = $3; }
1062 : "throw" Expression Terminator { $$ = new(driver.pool_) CYThrow($2); }
1066 : "try" Block CatchOpt FinallyOpt { $$ = new(driver.pool_) CYTry($2, $3, $4); }
1070 : "catch" "(" Identifier ")" Block { $$ = new(driver.pool_) CYCatch($3, $5); }
1075 : "finally" Block { $$ = $2; }
1080 : "function" Identifier "(" FormalParameterList ")" "{" FunctionBody "}" { $$ = new(driver.pool_) CYFunction($2, $4, $7); }
1084 : "function" IdentifierOpt "(" FormalParameterList ")" "{" FunctionBody "}" { $$ = new(driver.pool_) CYLambda($2, $4, $7); }
1087 FormalParameterList_
1088 : "," FormalParameterList { $$ = $2; }
1093 : Identifier FormalParameterList_ { $$ = new(driver.pool_) CYParameter($1, $2); }
1098 : SourceElements { $$ = $1; }
1102 : SourceElements { driver.source_ = $1; }
1106 : SourceElement SourceElements { $1->SetNext($2); $$ = $1; }
1111 : Statement { $$ = $1; }
1112 | FunctionDeclaration { $$ = $1; }
1115 /* Objective-C Extensions {{{ */
1117 : "," AssignmentExpression VariadicCall { $$ = new(driver.pool_) CYArgument(NULL, $2, $3); }
1122 : SelectorCall { $$ = $1; }
1123 | VariadicCall { $$ = $1; }
1127 : WordOpt ":" AssignmentExpression SelectorCall_ { $$ = new(driver.pool_) CYArgument($1 ?: new(driver.pool_) CYBlank(), $3, $4); }
1131 : SelectorCall { $$ = $1; }
1132 | Word { $$ = new(driver.pool_) CYArgument($1, NULL); }
1136 : "[" AssignmentExpression SelectorList "]" { $$ = new(driver.pool_) CYMessage($2, $3); }
1139 SelectorExpressionOpt
1140 : SelectorExpression_ { $$ = $1; }
1145 : WordOpt ":" SelectorExpressionOpt { $$ = new(driver.pool_) CYSelectorPart($1, true, $3); }
1149 : SelectorExpression_ { $$ = $1; }
1150 | Word { $$ = new(driver.pool_) CYSelectorPart($1, false, NULL); }
1154 : MessageExpression { $$ = $1; }
1155 | "@selector" "(" SelectorExpression ")" { $$ = new CYSelector($3); }
1159 LeftHandSideExpression_
1160 : "*" LeftHandSideExpression { $$ = new(driver.pool_) CYIndirect($2); }
1164 : "&" UnaryExpression { $$ = new(driver.pool_) CYAddressOf($2); }