/* Cycript - Optimizing JavaScript Compiler/Runtime
* Copyright (C) 2009-2010 Jay Freeman (saurik)
*/
/* GNU Lesser General Public License, Version 3 {{{ */
/*
* Cycript is free software: you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the
* Free Software Foundation, either version 3 of the License, or (at your
* option) any later version.
*
* Cycript is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
* License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Cycript. If not, see .
**/
/* }}} */
@if Bison23 %{
@if Bison24 %code top {
#define cyscanner driver.scanner_
#define YYSTACKEXPANDABLE 1
@if Bison23 #define yyerrok (yyerrstatus_ = 0)
@if Bison24 }
@if Bison24 %code requires {
#include "Parser.hpp"
#define CYNew new($pool)
@begin ObjectiveC
#include "ObjectiveC/Syntax.hpp"
@end
@begin E4X
#include "E4X/Syntax.hpp"
@end
typedef struct {
bool newline_;
union {
bool bool_;
CYDriver::Condition condition_;
CYArgument *argument_;
CYAssignment *assignment_;
CYBoolean *boolean_;
CYClause *clause_;
cy::Syntax::Catch *catch_;
CYComment *comment_;
CYComprehension *comprehension_;
CYCompound *compound_;
CYDeclaration *declaration_;
CYDeclarations *declarations_;
CYElement *element_;
CYExpression *expression_;
CYFalse *false_;
CYFinally *finally_;
CYForInitialiser *for_;
CYForInInitialiser *forin_;
CYFunctionParameter *functionParameter_;
CYIdentifier *identifier_;
CYInfix *infix_;
CYLiteral *literal_;
CYMember *member_;
CYNull *null_;
CYNumber *number_;
CYProgram *program_;
CYProperty *property_;
CYPropertyName *propertyName_;
CYRubyProc *rubyProc_;
CYStatement *statement_;
CYString *string_;
CYThis *this_;
CYTrue *true_;
CYWord *word_;
@begin ObjectiveC
CYClassName *className_;
CYField *field_;
CYMessage *message_;
CYMessageParameter *messageParameter_;
CYProtocol *protocol_;
CYSelectorPart *selector_;
@end
@begin E4X
CYAttribute *attribute_;
CYPropertyIdentifier *propertyIdentifier_;
CYSelector *selector_;
@end
};
} YYSTYPE;
#define YYSTYPE YYSTYPE
@if Bison24 }
@if Bison24 %code provides {
int cylex(YYSTYPE *, cy::location *, void *);
@if Bison24 }
@if Bison23 %}
%name-prefix="cy"
@if Bison23 %skeleton "lalr1.cc"
@if Bison24 %language "C++"
%initial-action {
@$.begin.filename = @$.end.filename = &driver.filename_;
};
%locations
%defines
//%glr-parser
//%expect 1
%error-verbose
%parse-param { CYDriver &driver }
%lex-param { void *cyscanner }
@begin E4X
%token XMLCDATA
%token XMLComment
%token XMLPI
%token XMLAttributeValue
%token XMLName
%token XMLTagCharacters
%token XMLText
%token XMLWhitespace
@end
@begin E4X
%token LeftRight "<>"
%token LeftSlashRight ">"
%token SlashRight "/>"
%token LeftSlash ""
%token ColonColon "::"
%token PeriodPeriod ".."
@end
@begin E4X ObjectiveC
%token At "@"
@end
%token Ampersand "&"
%token AmpersandAmpersand "&&"
%token AmpersandEqual "&="
%token Carrot "^"
%token CarrotEqual "^="
%token Equal "="
%token EqualEqual "=="
%token EqualEqualEqual "==="
%token Exclamation "!"
%token ExclamationEqual "!="
%token ExclamationEqualEqual "!=="
%token Hyphen "-"
%token HyphenEqual "-="
%token HyphenHyphen "--"
%token HyphenHyphen_ "\n--"
%token HyphenRight "->"
%token Left "<"
%token LeftEqual "<="
%token LeftLeft "<<"
%token LeftLeftEqual "<<="
%token Percent "%"
%token PercentEqual "%="
%token Period "."
%token PeriodPeriodPeriod "..."
%token Pipe "|"
%token PipeEqual "|="
%token PipePipe "||"
%token Plus "+"
%token PlusEqual "+="
%token PlusPlus "++"
%token PlusPlus_ "\n++"
%token Right ">"
%token RightEqual ">="
%token RightRight ">>"
%token RightRightEqual ">>="
%token RightRightRight ">>>"
%token RightRightRightEqual ">>>="
%token Slash "/"
%token SlashEqual "/="
%token Star "*"
%token StarEqual "*="
%token Tilde "~"
%token Colon ":"
%token Comma ","
%token Question "?"
%token SemiColon ";"
%token NewLine "\n"
%token Comment
%token OpenParen "("
%token CloseParen ")"
%token OpenBrace "{"
%token OpenBrace_ "\n{"
%token OpenBrace__ ";{"
%token CloseBrace "}"
%token OpenBracket "["
%token CloseBracket "]"
@begin Java
%token AtClass "@class"
@end
@begin ObjectiveC
%token AtImplementation "@implementation"
%token AtImplementation_ ";@implementation"
%token AtImport "@import"
%token AtEnd "@end"
%token AtSelector "@selector"
@end
%token False "false"
%token Null "null"
%token True "true"
// ES3/ES5/WIE/JSC Reserved
%token Break "break"
%token Case "case"
%token Catch "catch"
%token Continue "continue"
%token Default "default"
%token Delete "delete"
%token Do "do"
%token Else "else"
%token Finally "finally"
%token For "for"
%token Function "function"
%token Function_ ";function"
%token If "if"
%token In "in"
%token In_ "!in"
%token InstanceOf "instanceof"
%token New "new"
%token Return "return"
%token Switch "switch"
%token This "this"
%token Throw "throw"
%token Try "try"
%token TypeOf "typeof"
%token Var "var"
%token Void "void"
%token While "while"
%token With "with"
// ES3/IE6 Future, ES5/JSC Reserved
%token Debugger "debugger"
// ES3/ES5/IE6 Future, JSC Reserved
%token Const "const"
// ES3/ES5/IE6/JSC Future
%token Class "class"
%token Enum "enum"
%token Export "export"
%token Extends "extends"
%token Import "import"
%token Super "super"
// ES3 Future, ES5 Strict Future
%token Implements "implements"
%token Interface "interface"
%token Package "package"
%token Private "private"
%token Protected "protected"
%token Public "public"
%token Static "static"
// ES3 Future
%token Abstract "abstract"
%token Boolean "boolean"
%token Byte "byte"
%token Char "char"
%token Double "double"
%token Final "final"
%token Float "float"
%token Goto "goto"
%token Int "int"
%token Long "long"
%token Native "native"
%token Short "short"
%token Synchronized "synchronized"
%token Throws "throws"
%token Transient "transient"
%token Volatile "volatile"
// ES5 Strict
%token Let "let"
%token Yield "yield"
// Woah?!
%token Each "each"
@begin E4X
// E4X Conditional
%token Namespace "namespace"
%token XML "xml"
@end
%token AutoComplete
%token Identifier_
%token NumericLiteral
%token StringLiteral
%token RegularExpressionLiteral
%type AdditiveExpression
%type ArgumentList_
%type ArgumentList
%type ArgumentListOpt
%type Arguments
%type ArrayLiteral
%type AssignmentExpression_
%type AssignmentExpression
%type BindingIdentifier
%type BitwiseANDExpression
%type Block_
%type Block
%type BooleanLiteral
%type BindingElement
%type BitwiseORExpression
%type BitwiseXORExpression
%type BreakStatement
%type BreakableStatement
%type CallExpression_
%type CallExpression
%type CaseBlock
%type CaseClause
%type CaseClausesOpt
%type CatchOpt
%type ComprehensionList
%type ComprehensionListOpt
%type ConditionalExpression
%type ContinueStatement
%type DebuggerStatement
%type Declaration__
%type Declaration_
%type Declaration
%type DefaultClause
%type DoWhileStatement
%type Element
%type ElementOpt
%type ElementList
%type ElementListOpt
%type ElseStatementOpt
%type EmptyStatement
%type EqualityExpression
%type Expression_
%type Expression
%type ExpressionOpt
%type ExpressionStatement
%type FinallyOpt
%type ForComprehension
%type ForStatement
%type ForStatementInitialiser
%type ForInStatement
%type ForInStatementInitialiser
%type FormalParameter
%type FormalParameterList_
%type FormalParameterList
%type FormalParameterListOpt
%type FunctionBody
%type FunctionDeclaration
%type FunctionExpression
%type Identifier
%type IdentifierOpt
%type IfComprehension
%type IfStatement
%type Initialiser
%type InitialiserOpt
%type IterationStatement
%type LabelledStatement
%type LeftHandSideExpression
%type LetStatement
%type LexicalDeclaration
%type Literal
%type LiteralNoRE
%type LogicalANDExpression
%type LogicalORExpression
%type MemberAccess
%type MemberExpression_
%type MemberExpression
%type MultiplicativeExpression
%type NewExpression
%type NullLiteral
%type ObjectLiteral
%type Parenthetical
%type PostfixExpression
%type PrimaryExpression
%type Program
%type ProgramBody
%type ProgramBodyOpt
%type PropertyName_
%type PropertyName
%type PropertyNameAndValueList_
%type PropertyNameAndValueList
%type PropertyNameAndValueListOpt
%type RelationalExpression_
%type RelationalExpression
%type ReturnStatement
%type RubyProcExpression
%type RubyProcParameterList_
%type RubyProcParameterList
%type RubyProcParameters
%type RubyProcParametersOpt
%type ShiftExpression
%type SingleNameBinding
%type Statement__
%type Statement_
%type Statement
%type StatementList
%type StatementListOpt
%type StatementListItem
%type SwitchStatement
%type ThrowStatement
%type TryStatement
%type UnaryExpression_
%type UnaryExpression
%type VariableDeclaration
%type VariableDeclarationList_
%type VariableDeclarationList
%type VariableStatement
%type WhileStatement
%type WithStatement
@begin C
%type UnaryAssigneeExpression
@end
@begin ObjectiveC
%type CategoryStatement
%type ClassExpression
%type ClassStatement
%type ClassSuperOpt
%type ClassFieldList
%type ClassMessageDeclaration
%type ClassMessageDeclarationListOpt
%type ClassName
%type ClassNameOpt
%type ClassProtocolListOpt
%type ClassProtocols
%type ClassProtocolsOpt
%type MessageExpression
%type MessageParameter
%type MessageParameters
%type MessageParameterList
%type MessageParameterListOpt
%type MessageScope
%type SelectorCall_
%type SelectorCall
%type SelectorExpression_
%type SelectorExpression
%type SelectorExpressionOpt
%type SelectorList
%type SelectorWordOpt
%type TypeOpt
%type VariadicCall
%type Word
%type WordOpt
@end
@begin E4X
%type PropertyIdentifier_
%type PropertySelector_
%type PropertySelector
%type QualifiedIdentifier_
%type QualifiedIdentifier
%type WildcardIdentifier
%type XMLComment
%type XMLCDATA
%type XMLElement
%type XMLElementContent
%type XMLMarkup
%type XMLPI
%type AttributeIdentifier
/* XXX: %type DefaultXMLNamespaceStatement */
%type PropertyIdentifier
%type XMLListInitialiser
%type XMLInitialiser
@end
%nonassoc ""
%left "++" "--"
%nonassoc "if"
%nonassoc "else"
%start Program
%%
/* Lexer State {{{ */
LexPushInOn
: { driver.in_.push(true); }
;
LexPushInOff
: { driver.in_.push(false); }
;
LexPopIn
: { driver.in_.pop(); }
;
LexSetRegExp
: { driver.SetCondition(CYDriver::RegExpCondition); }
;
LexSetStatement
: {
if (yychar == 0)
driver.statement_ = true;
else switch (yychar) {
case cy::parser::token::Function:
yychar = cy::parser::token::Function_;
break;
case cy::parser::token::OpenBrace:
case cy::parser::token::OpenBrace_:
yychar = cy::parser::token::OpenBrace__;
break;
}
}
;
/* }}} */
BRACE
: "{"
| "\n{"
;
StrictSemi
: { driver.Warning(yylloc, "warning, automatic semi-colon insertion required"); }
;
Terminator_
: ";"
| "\n" StrictSemi
;
Terminator
: Terminator_
| error { if (yychar != 0 && yychar != cy::parser::token::CloseBrace && !yylval.newline_) YYABORT; else { yyerrok; driver.errors_.pop_back(); } } StrictSemi
;
TerminatorOpt
: Terminator_
| error { yyerrok; driver.errors_.pop_back(); } StrictSemi
;
/*CommaOpt
: ","
|
;*/
@begin ObjectiveC
NewLineOpt
: "\n"
|
;
Word
: Identifier { $$ = $1; }
| "break" NewLineOpt { $$ = $1; }
| "case" { $$ = $1; }
| "catch" { $$ = $1; }
| "class" { $$ = $1; }
| "const" { $$ = $1; }
| "continue" NewLineOpt { $$ = $1; }
| "debugger" { $$ = $1; }
| "default" { $$ = $1; }
| "delete" { $$ = $1; }
| "do" { $$ = $1; }
| "else" { $$ = $1; }
| "enum" { $$ = $1; }
| "export" { $$ = $1; }
| "extends" { $$ = $1; }
| "false" { $$ = $1; }
| "finally" { $$ = $1; }
/* XXX: | "for" { $$ = $1; } */
| "function" { $$ = $1; }
| "if" { $$ = $1; }
| "import" { $$ = $1; }
/* XXX: | "in" { $$ = $1; } */
/* XXX: | "instanceof" { $$ = $1; } */
| "new" { $$ = $1; }
| "null" { $$ = $1; }
| "return" NewLineOpt { $$ = $1; }
| "super" { $$ = $1; }
| "switch" { $$ = $1; }
| "this" { $$ = $1; }
| "throw" NewLineOpt { $$ = $1; }
| "true" { $$ = $1; }
| "try" { $$ = $1; }
| "typeof" { $$ = $1; }
| "var" { $$ = $1; }
| "void" { $$ = $1; }
| "while" { $$ = $1; }
| "with" { $$ = $1; }
;
WordOpt
: Word { $$ = $1; }
| { $$ = NULL; }
;
PrimaryExpression
: "@" LiteralNoRE { $$ = CYNew CYBox($2); }
| "@" ArrayLiteral { $$ = CYNew CYBox($2); }
| "@" ObjectLiteral { $$ = CYNew CYBox($2); }
| "@" Parenthetical { $$ = CYNew CYBox($2); }
;
@end
Identifier
: Identifier_ { $$ = $1; }
| "implements" { $$ = $1; }
| "interface" { $$ = $1; }
| "package" { $$ = $1; }
| "private" { $$ = $1; }
| "protected" { $$ = $1; }
| "public" { $$ = $1; }
| "static" { $$ = $1; }
| "abstract" { $$ = $1; }
| "boolean" { $$ = $1; }
| "byte" { $$ = $1; }
| "char" { $$ = $1; }
| "double" { $$ = $1; }
| "final" { $$ = $1; }
| "float" { $$ = $1; }
| "goto" { $$ = $1; }
| "int" { $$ = $1; }
| "long" { $$ = $1; }
| "native" { $$ = $1; }
| "short" { $$ = $1; }
| "synchronized" { $$ = $1; }
| "throws" { $$ = $1; }
| "transient" { $$ = $1; }
| "volatile" { $$ = $1; }
// XXX: is this allowed?! | "let" { $$ = $1; }
| "yield" { $$ = $1; }
| "each" { $$ = $1; }
;
IdentifierOpt
: Identifier { $$ = $1; }
| { $$ = NULL; }
;
LiteralNoRE
: NullLiteral { $$ = $1; }
| BooleanLiteral { $$ = $1; }
| NumericLiteral { $$ = $1; }
| StringLiteral { $$ = $1; }
;
Literal
: LiteralNoRE { $$ = $1; }
| RegularExpressionLiteral { $$ = $1; }
;
NullLiteral
: "null" { $$ = $1; }
;
BooleanLiteral
: "true" { $$ = $1; }
| "false" { $$ = $1; }
;
/* 11.1 Primary Expressions {{{ */
Parenthetical
: "(" LexPushInOff Expression LexPopIn ")" { $$ = $3; }
;
PrimaryExpression
: "this" { $$ = $1; }
| Identifier { $$ = CYNew CYVariable($1); }
| Literal { $$ = $1; }
| ArrayLiteral { $$ = $1; }
| ObjectLiteral { $$ = $1; }
| FunctionExpression { $$ = $1; }
| Parenthetical { $$ = $1; }
| AutoComplete { driver.mode_ = CYDriver::AutoPrimary; YYACCEPT; }
;
/* }}} */
/* 11.1.4.1 Array Initialiser {{{ */
ArrayLiteral
: "[" LexPushInOff ElementListOpt LexPopIn "]" { $$ = CYNew CYArray($3); }
;
Element
: AssignmentExpression { $$ = $1; }
;
ElementOpt
: Element { $$ = $1; }
| LexSetRegExp { $$ = NULL; }
;
ElementList
: ElementOpt "," ElementListOpt { $$ = CYNew CYElement($1, $3); }
| Element { $$ = CYNew CYElement($1, NULL); }
;
ElementListOpt
: ElementList { $$ = $1; }
| LexSetRegExp { $$ = NULL; }
;
/* }}} */
/* 11.1.5 Object Initialiser {{{ */
ObjectLiteral
: BRACE LexPushInOff PropertyNameAndValueListOpt LexPopIn "}" { $$ = CYNew CYObject($3); }
;
PropertyNameAndValueList_
: "," PropertyNameAndValueList { $$ = $2; }
| { $$ = NULL; }
;
PropertyNameAndValueList
: PropertyName ":" AssignmentExpression PropertyNameAndValueList_ { $$ = CYNew CYProperty($1, $3, $4); }
;
PropertyNameAndValueListOpt
: PropertyNameAndValueList { $$ = $1; }
| { $$ = NULL; }
;
PropertyName_
: Identifier { $$ = $1; }
| StringLiteral { $$ = $1; }
| NumericLiteral { $$ = $1; }
;
PropertyName
: LexSetRegExp PropertyName_ { $$ = $2; }
;
/* }}} */
/* 11.2 Left-Hand-Side Expressions {{{ */
MemberAccess
: "[" LexPushInOff Expression LexPopIn "]" { $$ = CYNew CYDirectMember(NULL, $3); }
| "." Identifier { $$ = CYNew CYDirectMember(NULL, CYNew CYString($2)); }
| "." AutoComplete { driver.mode_ = CYDriver::AutoDirect; YYACCEPT; }
;
MemberExpression_
: MemberExpression { $$ = $1; }
//| "super" { $$ = $1; }
;
MemberExpression
: LexSetRegExp PrimaryExpression { $$ = $2; }
| MemberExpression_ { driver.context_ = $1; } MemberAccess { $3->SetLeft($1); $$ = $3; }
| LexSetRegExp "new" MemberExpression Arguments { $$ = CYNew cy::Syntax::New($3, $4); }
;
NewExpression
: MemberExpression { $$ = $1; }
| LexSetRegExp "new" NewExpression { $$ = CYNew cy::Syntax::New($3, NULL); }
;
CallExpression_
: MemberExpression_
| CallExpression
;
CallExpression
: CallExpression_ Arguments { $$ = CYNew CYCall($1, $2); }
| CallExpression { driver.context_ = $1; } MemberAccess { $3->SetLeft($1); $$ = $3; }
;
Arguments
: "(" LexPushInOff ArgumentListOpt LexPopIn ")" { $$ = $3; }
;
ArgumentList_
: "," ArgumentList { $$ = $2; }
| { $$ = NULL; }
;
ArgumentList
: AssignmentExpression ArgumentList_ { $$ = CYNew CYArgument(NULL, $1, $2); }
;
ArgumentListOpt
: ArgumentList { $$ = $1; }
| LexSetRegExp { $$ = NULL; }
;
LeftHandSideExpression
: NewExpression { $$ = $1; }
| CallExpression { $$ = $1; }
;
/* }}} */
/* 11.3 Postfix Expressions {{{ */
PostfixExpression
: %prec "" LeftHandSideExpression { $$ = $1; }
| LeftHandSideExpression "++" { $$ = CYNew CYPostIncrement($1); }
| LeftHandSideExpression "--" { $$ = CYNew CYPostDecrement($1); }
;
/* }}} */
/* 11.4 Unary Operators {{{ */
UnaryExpression_
: "delete" UnaryExpression { $$ = CYNew CYDelete($2); }
| "void" UnaryExpression { $$ = CYNew CYVoid($2); }
| "typeof" UnaryExpression { $$ = CYNew CYTypeOf($2); }
| "++" UnaryExpression { $$ = CYNew CYPreIncrement($2); }
| "\n++" UnaryExpression { $$ = CYNew CYPreIncrement($2); }
| "--" UnaryExpression { $$ = CYNew CYPreDecrement($2); }
| "\n--" UnaryExpression { $$ = CYNew CYPreDecrement($2); }
| "+" UnaryExpression { $$ = CYNew CYAffirm($2); }
| "-" UnaryExpression { $$ = CYNew CYNegate($2); }
| "~" UnaryExpression { $$ = CYNew CYBitwiseNot($2); }
| "!" UnaryExpression { $$ = CYNew CYLogicalNot($2); }
;
UnaryExpression
: PostfixExpression { $$ = $1; }
| LexSetRegExp UnaryExpression_ { $$ = $2; }
;
/* }}} */
/* 11.5 Multiplicative Operators {{{ */
MultiplicativeExpression
: UnaryExpression { $$ = $1; }
| MultiplicativeExpression "*" UnaryExpression { $$ = CYNew CYMultiply($1, $3); }
| MultiplicativeExpression "/" UnaryExpression { $$ = CYNew CYDivide($1, $3); }
| MultiplicativeExpression "%" UnaryExpression { $$ = CYNew CYModulus($1, $3); }
;
/* }}} */
/* 11.6 Additive Operators {{{ */
AdditiveExpression
: MultiplicativeExpression { $$ = $1; }
| AdditiveExpression "+" MultiplicativeExpression { $$ = CYNew CYAdd($1, $3); }
| AdditiveExpression "-" MultiplicativeExpression { $$ = CYNew CYSubtract($1, $3); }
;
/* }}} */
/* 11.7 Bitwise Shift Operators {{{ */
ShiftExpression
: AdditiveExpression { $$ = $1; }
| ShiftExpression "<<" AdditiveExpression { $$ = CYNew CYShiftLeft($1, $3); }
| ShiftExpression ">>" AdditiveExpression { $$ = CYNew CYShiftRightSigned($1, $3); }
| ShiftExpression ">>>" AdditiveExpression { $$ = CYNew CYShiftRightUnsigned($1, $3); }
;
/* }}} */
/* 11.8 Relational Operators {{{ */
RelationalExpression_
: ShiftExpression { $$ = $1; }
;
RelationalExpression
: RelationalExpression_ { $$ = $1; }
| RelationalExpression "<" RelationalExpression_ { $$ = CYNew CYLess($1, $3); }
| RelationalExpression ">" RelationalExpression_ { $$ = CYNew CYGreater($1, $3); }
| RelationalExpression "<=" RelationalExpression_ { $$ = CYNew CYLessOrEqual($1, $3); }
| RelationalExpression ">=" RelationalExpression_ { $$ = CYNew CYGreaterOrEqual($1, $3); }
| RelationalExpression "instanceof" RelationalExpression_ { $$ = CYNew CYInstanceOf($1, $3); }
| RelationalExpression "in" RelationalExpression_ { $$ = CYNew CYIn($1, $3); }
;
/* }}} */
/* 11.9 Equality Operators {{{ */
EqualityExpression
: RelationalExpression { $$ = $1; }
| EqualityExpression "==" RelationalExpression { $$ = CYNew CYEqual($1, $3); }
| EqualityExpression "!=" RelationalExpression { $$ = CYNew CYNotEqual($1, $3); }
| EqualityExpression "===" RelationalExpression { $$ = CYNew CYIdentical($1, $3); }
| EqualityExpression "!==" RelationalExpression { $$ = CYNew CYNotIdentical($1, $3); }
;
/* }}} */
/* 11.10 Binary Bitwise Operators {{{ */
BitwiseANDExpression
: EqualityExpression { $$ = $1; }
| BitwiseANDExpression "&" EqualityExpression { $$ = CYNew CYBitwiseAnd($1, $3); }
;
BitwiseXORExpression
: BitwiseANDExpression { $$ = $1; }
| BitwiseXORExpression "^" BitwiseANDExpression { $$ = CYNew CYBitwiseXOr($1, $3); }
;
BitwiseORExpression
: BitwiseXORExpression { $$ = $1; }
| BitwiseORExpression "|" BitwiseXORExpression { $$ = CYNew CYBitwiseOr($1, $3); }
;
/* }}} */
/* 11.11 Binary Logical Operators {{{ */
LogicalANDExpression
: BitwiseORExpression { $$ = $1; }
| LogicalANDExpression "&&" BitwiseORExpression { $$ = CYNew CYLogicalAnd($1, $3); }
;
LogicalORExpression
: LogicalANDExpression { $$ = $1; }
| LogicalORExpression "||" LogicalANDExpression { $$ = CYNew CYLogicalOr($1, $3); }
;
/* }}} */
/* 11.12 Conditional Operator ( ? : ) {{{ */
ConditionalExpression
: LogicalORExpression { $$ = $1; }
| LogicalORExpression "?" LexPushInOff AssignmentExpression LexPopIn ":" AssignmentExpression { $$ = CYNew CYCondition($1, $4, $7); }
;
/* }}} */
/* 11.13 Assignment Operators {{{ */
AssignmentExpression_
: "=" AssignmentExpression { $$ = CYNew CYAssign(NULL, $2); }
| "*=" AssignmentExpression { $$ = CYNew CYMultiplyAssign(NULL, $2); }
| "/=" AssignmentExpression { $$ = CYNew CYDivideAssign(NULL, $2); }
| "%=" AssignmentExpression { $$ = CYNew CYModulusAssign(NULL, $2); }
| "+=" AssignmentExpression { $$ = CYNew CYAddAssign(NULL, $2); }
| "-=" AssignmentExpression { $$ = CYNew CYSubtractAssign(NULL, $2); }
| "<<=" AssignmentExpression { $$ = CYNew CYShiftLeftAssign(NULL, $2); }
| ">>=" AssignmentExpression { $$ = CYNew CYShiftRightSignedAssign(NULL, $2); }
| ">>>=" AssignmentExpression { $$ = CYNew CYShiftRightUnsignedAssign(NULL, $2); }
| "&=" AssignmentExpression { $$ = CYNew CYBitwiseAndAssign(NULL, $2); }
| "^=" AssignmentExpression { $$ = CYNew CYBitwiseXOrAssign(NULL, $2); }
| "|=" AssignmentExpression { $$ = CYNew CYBitwiseOrAssign(NULL, $2); }
;
@begin C
LeftHandSideExpression
: LexSetRegExp UnaryAssigneeExpression { $$ = $2; }
;
@end
AssignmentExpression
: ConditionalExpression { $$ = $1; }
| LeftHandSideExpression AssignmentExpression_ { $2->SetLeft($1); $$ = $2; }
;
/* }}} */
/* 11.14 Comma Operator {{{ */
Expression_
: "," Expression { $$ = CYNew CYCompound($2); }
| { $$ = NULL; }
;
Expression
: AssignmentExpression Expression_ { if ($2) { $2->AddPrev($1); $$ = $2; } else $$ = $1; }
;
ExpressionOpt
: Expression { $$ = $1; }
| LexSetRegExp { $$ = NULL; }
;
/* }}} */
/* 12 Statements {{{ */
Statement__
: Block { $$ = $1; }
| VariableStatement { $$ = $1; }
| EmptyStatement { $$ = $1; }
| IfStatement { $$ = $1; }
| BreakableStatement { $$ = $1; }
| ContinueStatement { $$ = $1; }
| BreakStatement { $$ = $1; }
| ReturnStatement { $$ = $1; }
| WithStatement { $$ = $1; }
| LabelledStatement { $$ = $1; }
| ThrowStatement { $$ = $1; }
| TryStatement { $$ = $1; }
| DebuggerStatement { $$ = $1; }
;
Statement_
: LexSetRegExp Statement__ { $$ = $2; }
| ExpressionStatement { $$ = $1; }
;
Statement
: LexSetStatement Statement_ { $$ = $2; }
;
Declaration__
: FunctionDeclaration { $$ = $1; }
| LexicalDeclaration { $$ = $1; }
;
Declaration_
: LexSetRegExp Declaration__ { $$ = $2; }
;
Declaration
: LexSetStatement Declaration_ { $$ = $2; }
;
BreakableStatement
: IterationStatement { $$ = $1; }
| SwitchStatement { $$ = $1; }
;
/* }}} */
/* 12.1 Block {{{ */
Block_
: BRACE StatementListOpt "}" { $$ = $2; }
;
Block
: ";{" StatementListOpt "}" { $$ = CYNew CYBlock($2); }
;
StatementList
: StatementListItem StatementListOpt { $1->SetNext($2); $$ = $1; }
;
StatementListOpt
: StatementList { $$ = $1; }
| LexSetRegExp { $$ = NULL; }
;
StatementListItem
: Statement { $$ = $1; }
| Declaration { $$ = $1; }
;
/* }}} */
/* 12.2 Declarations {{{ */
BindingIdentifier
: Identifier { $$ = $1; }
;
// XXX: BindingPattern
/* }}} */
/* 12.2.1 Let and Const Declarations {{{ */
LexicalDeclaration
: LetOrConst VariableDeclarationList Terminator { $$ = CYNew CYVar($2); }
;
LetOrConst
: "let"
| "const"
;
/* }}} */
/* 12.2.2 Variable Statement {{{ */
VariableStatement
: "var" VariableDeclarationList Terminator { $$ = CYNew CYVar($2); }
;
VariableDeclarationList_
: "," VariableDeclarationList { $$ = $2; }
| { $$ = NULL; }
;
VariableDeclarationList
: VariableDeclaration VariableDeclarationList_ { $$ = CYNew CYDeclarations($1, $2); }
;
VariableDeclaration
: BindingIdentifier InitialiserOpt { $$ = CYNew CYDeclaration($1, $2); }
// XXX: | BindingPattern Initialiser { $$ = CYNew CYDeclaration($1, $2); }
;
Initialiser
: "=" AssignmentExpression { $$ = $2; }
;
InitialiserOpt
: Initialiser { $$ = $1; }
| { $$ = NULL; }
;
/* }}} */
/* 12.2.4 Destructuring Binding Patterns {{{ */
// XXX: *
BindingElement
: SingleNameBinding { $$ = $1; }
;
SingleNameBinding
: BindingIdentifier InitialiserOpt { $$ = CYNew CYDeclaration($1, $2); }
;
/* }}} */
/* 12.3 Empty Statement {{{ */
EmptyStatement
: ";" { $$ = CYNew CYEmpty(); }
;
/* }}} */
/* 12.4 Expression Statement {{{ */
ExpressionStatement
: Expression Terminator { $$ = CYNew CYExpress($1); }
;
/* }}} */
/* 12.5 The if Statement {{{ */
ElseStatementOpt
: "else" Statement { $$ = $2; }
| %prec "if" { $$ = NULL; }
;
IfStatement
: "if" "(" Expression ")" Statement ElseStatementOpt { $$ = CYNew CYIf($3, $5, $6); }
;
/* }}} */
/* 12.6 Iteration Statements {{{ */
IterationStatement
: DoWhileStatement { $$ = $1; }
| WhileStatement { $$ = $1; }
| ForStatement { $$ = $1; }
| ForInStatement { $$ = $1; }
;
/* }}} */
/* 12.6.1 The do-while Statement {{{ */
DoWhileStatement
: "do" Statement "while" "(" Expression ")" TerminatorOpt { $$ = CYNew CYDoWhile($5, $2); }
;
/* }}} */
/* 12.6.2 The while Statement {{{ */
WhileStatement
: "while" "(" Expression ")" Statement { $$ = CYNew CYWhile($3, $5); }
;
/* }}} */
/* 12.6.3 The for Statement {{{ */
ForStatement
: "for" "(" LexPushInOn ForStatementInitialiser LexPopIn ";" ExpressionOpt ";" ExpressionOpt ")" Statement { $$ = CYNew CYFor($4, $7, $9, $11); }
;
ForStatementInitialiser
: ExpressionOpt { $$ = $1; }
| LexSetRegExp "var" VariableDeclarationList { $$ = CYNew CYForDeclarations($3); }
;
/* }}} */
/* 12.6.4 The for-in Statement {{{ */
ForInStatement
: "for" "(" LexPushInOn ForInStatementInitialiser LexPopIn "!in" Expression ")" Statement { $$ = CYNew CYForIn($4, $7, $9); }
;
ForInStatementInitialiser
: LeftHandSideExpression { $$ = $1; }
| LexSetRegExp "var" VariableDeclaration { $$ = $3; }
;
/* }}} */
/* 12.7 The continue Statement {{{ */
ContinueStatement
: "continue" IdentifierOpt Terminator { $$ = CYNew CYContinue($2); }
;
/* }}} */
/* 12.8 The break Statement {{{ */
BreakStatement
: "break" IdentifierOpt Terminator { $$ = CYNew CYBreak($2); }
;
/* }}} */
/* 12.9 The return Statement {{{ */
ReturnStatement
: "return" ExpressionOpt Terminator { $$ = CYNew CYReturn($2); }
;
/* }}} */
/* 12.10 The with Statement {{{ */
WithStatement
: "with" "(" Expression ")" Statement { $$ = CYNew CYWith($3, $5); }
;
/* }}} */
/* 12.11 The switch Statement {{{ */
SwitchStatement
: "switch" "(" Expression ")" CaseBlock { $$ = CYNew CYSwitch($3, $5); }
;
CaseBlock
: BRACE CaseClausesOpt "}" { $$ = $2; }
;
CaseClause
: "case" Expression ":" StatementListOpt { $$ = CYNew CYClause($2, $4); }
;
CaseClausesOpt
: CaseClause CaseClausesOpt { $1->SetNext($2); $$ = $1; }
| DefaultClause CaseClausesOpt { $1->SetNext($2); $$ = $1; }
| { $$ = NULL; }
;
DefaultClause
: "default" ":" StatementListOpt { $$ = CYNew CYClause(NULL, $3); }
;
/* }}} */
/* 12.12 Labelled Statements {{{ */
LabelledStatement
: Identifier ":" Statement { $$ = CYNew CYLabel($1, $3); }
;
/* }}} */
/* 12.13 The throw Statement {{{ */
ThrowStatement
: "throw" Expression Terminator { $$ = CYNew cy::Syntax::Throw($2); }
;
/* }}} */
/* 12.14 The try Statement {{{ */
TryStatement
: "try" Block_ CatchOpt FinallyOpt { $$ = CYNew cy::Syntax::Try($2, $3, $4); }
;
CatchOpt
: "catch" "(" Identifier ")" Block_ { $$ = CYNew cy::Syntax::Catch($3, $5); }
| { $$ = NULL; }
;
FinallyOpt
: "finally" Block_ { $$ = CYNew CYFinally($2); }
| { $$ = NULL; }
;
/* }}} */
/* 12.14 The debugger Statement {{{ */
DebuggerStatement
: "debugger" Terminator { $$ = CYNew CYDebugger(); }
;
/* }}} */
/* 13 Function Definition {{{ */
FunctionDeclaration
: ";function" Identifier "(" FormalParameterListOpt ")" BRACE FunctionBody "}" { $$ = CYNew CYFunctionStatement($2, $4, $7); }
;
FunctionExpression
: "function" IdentifierOpt "(" LexPushInOff FormalParameterListOpt LexPopIn ")" BRACE LexPushInOff FunctionBody LexPopIn "}" { $$ = CYNew CYFunctionExpression($2, $5, $10); }
;
FormalParameterList_
: "," FormalParameterList { $$ = $2; }
| { $$ = NULL; }
;
FormalParameterList
// XXX: : FunctionRestParameter { $$ = $1; }
: FormalParameter FormalParameterList_ { $$ = CYNew CYFunctionParameter($1, $2); }
;
FormalParameterListOpt
: FormalParameterList
| { $$ = NULL; }
;
/* XXX: FunctionRestParameter
: "..." BindingIdentifier { $$ = CYNew CYFunctionRestParameter($2); }
;*/
FormalParameter
: BindingElement { $$ = $1; }
;
FunctionBody
: StatementListOpt { $$ = $1; }
;
/* }}} */
/* 14 Program {{{ */
Program
: ProgramBodyOpt { driver.program_ = CYNew CYProgram($1); }
;
ProgramBody
: StatementList { $$ = $1; }
;
ProgramBodyOpt
: ProgramBody { $$ = $1; }
| { $$ = NULL; }
;
/* }}} */
@begin ObjectiveC
/* Cycript (Objective-C): @class Declaration {{{ */
ClassSuperOpt
/* XXX: why the hell did I choose MemberExpression? */
: ":" LexSetRegExp MemberExpression { $$ = $3; }
| { $$ = NULL; }
;
ClassField
: Expression Identifier ";"
;
ClassFieldList
: BRACE ClassFieldListOpt "}" { $$ = NULL; }
;
ClassFieldListOpt
: ClassFieldListOpt ClassField
|
;
MessageScope
: "+" { $$ = false; }
| "-" { $$ = true; }
;
TypeOpt
: "(" Expression ")" { $$ = $2; }
| "(" LexSetRegExp "void" ")" { $$ = NULL; }
| { $$ = NULL; }
;
MessageParameter
: Word ":" TypeOpt Identifier { $$ = CYNew CYMessageParameter($1, $3, $4); }
;
MessageParameterList
: MessageParameter MessageParameterListOpt { $1->SetNext($2); $$ = $1; }
;
MessageParameterListOpt
: MessageParameterList { $$ = $1; }
| { $$ = NULL; }
;
MessageParameters
: MessageParameterList { $$ = $1; }
| Word { $$ = CYNew CYMessageParameter($1, NULL, NULL); }
;
ClassMessageDeclaration
: MessageScope TypeOpt MessageParameters BRACE FunctionBody "}" { $$ = CYNew CYMessage($1, $2, $3, $5); }
;
ClassMessageDeclarationListOpt
: ClassMessageDeclarationListOpt ClassMessageDeclaration { $2->SetNext($1); $$ = $2; }
| ClassMessageDeclarationListOpt Comment { $$ = $1; }
| { $$ = NULL; }
;
ClassName
: Identifier { $$ = $1; }
| "(" AssignmentExpression ")" { $$ = $2; }
;
ClassNameOpt
: ClassName { $$ = $1; }
| { $$ = NULL; }
;
// XXX: this should be AssignmentExpressionNoRight
ClassProtocols
: ShiftExpression ClassProtocolsOpt { $$ = CYNew CYProtocol($1, $2); }
;
ClassProtocolsOpt
: "," ClassProtocols { $$ = $2; }
| { $$ = NULL; }
;
ClassProtocolListOpt
: "<" ClassProtocols ">" { $$ = $2; }
| { $$ = NULL; }
;
ClassExpression
: "@implementation" LexPushInOff ClassNameOpt ClassSuperOpt ClassProtocolListOpt ClassFieldList ClassMessageDeclarationListOpt LexPopIn "@end" { $$ = CYNew CYClassExpression($3, $4, $5, $6, $7); }
;
ClassStatement
: ";@implementation" ClassName ClassSuperOpt ClassProtocolListOpt ClassFieldList ClassMessageDeclarationListOpt "@end" { $$ = CYNew CYClassStatement($2, $3, $4, $5, $6); }
;
CategoryName
: "(" WordOpt ")"
;
CategoryStatement
: ";@implementation" ClassName CategoryName ClassMessageDeclarationListOpt "@end" { $$ = CYNew CYCategory($2, $4); }
;
PrimaryExpression
: ClassExpression { $$ = $1; }
;
Statement__
: ClassStatement { $$ = $1; }
| CategoryStatement { $$ = $1; }
;
/* }}} */
/* Cycript (Objective-C): Send Message {{{ */
VariadicCall
: "," AssignmentExpression VariadicCall { $$ = CYNew CYArgument(NULL, $2, $3); }
| { $$ = NULL; }
;
SelectorWordOpt
: WordOpt { driver.contexts_.back().words_.push_back($1); } { $$ = $1; }
| AutoComplete { driver.mode_ = CYDriver::AutoMessage; YYACCEPT; }
;
SelectorCall_
: SelectorCall { $$ = $1; }
| VariadicCall { $$ = $1; }
;
SelectorCall
: SelectorWordOpt ":" AssignmentExpression SelectorCall_ { $$ = CYNew CYArgument($1 ?: CYNew CYBlank(), $3, $4); }
;
SelectorList
: SelectorCall { $$ = $1; }
| Word { $$ = CYNew CYArgument($1, NULL); }
;
MessageExpression
: "[" LexPushInOff AssignmentExpression { driver.contexts_.push_back($3); } SelectorList LexPopIn "]" { driver.contexts_.pop_back(); } { $$ = CYNew CYSendDirect($3, $5); }
| "[" LexPushInOff LexSetRegExp "super" { driver.context_ = NULL; } SelectorList LexPopIn "]" { $$ = CYNew CYSendSuper($6); }
;
SelectorExpression_
: WordOpt ":" SelectorExpressionOpt { $$ = CYNew CYSelectorPart($1, true, $3); }
;
SelectorExpression
: SelectorExpression_ { $$ = $1; }
| Word { $$ = CYNew CYSelectorPart($1, false, NULL); }
;
SelectorExpressionOpt
: SelectorExpression_ { $$ = $1; }
| { $$ = NULL; }
;
PrimaryExpression
: MessageExpression { $$ = $1; }
| "@selector" "(" LexPushInOff SelectorExpression LexPopIn ")" { $$ = CYNew CYSelector($4); }
;
/* }}} */
/* Cycript (Objective-C): @import Directive {{{ */
PathName
: "/" PathName
| "." PathName
| Word PathName
|
;
ImportPath
: "<" PathName ">"
| StringLiteral
;
StatementListItem
: "@import" ImportPath { $$ = CYNew CYImport(); }
;
/* }}} */
@end
@begin C
/* Cycript (C): Pointer Indirection/Addressing {{{ */
UnaryAssigneeExpression
: "*" UnaryExpression { $$ = CYNew CYIndirect($2); }
;
UnaryExpression_
: "&" UnaryExpression { $$ = CYNew CYAddressOf($2); }
;
MemberAccess
: "->" "[" Expression "]" { $$ = CYNew CYIndirectMember(NULL, $3); }
| "->" Identifier { $$ = CYNew CYIndirectMember(NULL, CYNew CYString($2)); }
| "->" AutoComplete { driver.mode_ = CYDriver::AutoIndirect; YYACCEPT; }
;
/* }}} */
@end
/* YUI: Documentation Comments {{{ */
Statement__
: Comment { $$ = $1; }
;
/* }}} */
@begin E4X
/* Lexer State {{{ */
LexPushRegExp
: { driver.PushCondition(CYDriver::RegExpCondition); }
;
LexPushXMLContent
: { driver.PushCondition(CYDriver::XMLContentCondition); }
;
LexPushXMLTag
: { driver.PushCondition(CYDriver::XMLTagCondition); }
;
LexPop
: { driver.PopCondition(); }
;
LexSetXMLContent
: { driver.SetCondition(CYDriver::XMLContentCondition); }
;
LexSetXMLTag
: { driver.SetCondition(CYDriver::XMLTagCondition); }
;
/* }}} */
XMLWhitespaceOpt
: XMLWhitespace
|
;
/* 8.1 Context Keywords {{{ */
Identifier
: "namespace" { $$ = $1; }
| "xml" { $$ = $1; }
;
/* }}} */
/* 8.3 XML Initialiser Input Elements {{{ */
XMLMarkup
: XMLComment { $$ = $1; }
| XMLCDATA { $$ = $1; }
| XMLPI { $$ = $1; }
;
/* }}} */
/* 11.1 Primary Expressions {{{ */
PrimaryExpression
: PropertyIdentifier { $$ = CYNew CYPropertyVariable($1); }
| XMLInitialiser { $$ = $1; }
| XMLListInitialiser { $$ = $1; }
;
PropertyIdentifier
: AttributeIdentifier { $$ = $1; }
| QualifiedIdentifier { $$ = $1; }
| WildcardIdentifier { $$ = $1; }
;
/* }}} */
/* 11.1.1 Attribute Identifiers {{{ */
AttributeIdentifier
: "@" QualifiedIdentifier_ { $$ = CYNew CYAttribute($2); }
;
PropertySelector_
: PropertySelector { $$ = $1; }
| "[" LexPushInOff Expression LexPopIn "]" { $$ = CYNew CYSelector($3); }
;
PropertySelector
: Identifier { $$ = CYNew CYSelector($1); }
| WildcardIdentifier { $$ = $1; }
;
/* }}} */
/* 11.1.2 Qualified Identifiers {{{ */
QualifiedIdentifier_
: PropertySelector_ { $$ = CYNew CYQualified(NULL, $1); }
| QualifiedIdentifier { $$ = $1; }
;
QualifiedIdentifier
: PropertySelector "::" PropertySelector_ { $$ = CYNew CYQualified($1, $3); }
;
/* }}} */
/* 11.1.3 Wildcard Identifiers {{{ */
WildcardIdentifier
: "*" { $$ = CYNew CYWildcard(); }
;
/* }}} */
/* 11.1.4 XML Initialiser {{{ */
XMLInitialiser
: XMLMarkup { $$ = $1; }
| XMLElement { $$ = $1; }
;
XMLElement
: "<" LexPushInOff XMLTagContent LexPop LexPopIn "/>"
| "<" LexPushInOff XMLTagContent ">" LexSetXMLContent XMLElementContentOpt "" LexSetXMLTag XMLTagName XMLWhitespaceOpt LexPop LexPopIn ">"
;
XMLTagContent
: LexPushXMLTag XMLTagName XMLAttributes
;
XMLExpression
: BRACE LexPushRegExp Expression LexPop "}"
;
XMLTagName
: XMLExpression
| XMLName
;
XMLAttributes_
: XMLAttributes_ XMLAttribute
|
;
XMLAttributes
: XMLAttributes_ XMLWhitespace XMLExpression XMLWhitespaceOpt
| XMLAttributes_ XMLWhitespaceOpt
;
XMLAttributeValue_
: XMLExpression
| XMLAttributeValue
;
XMLAttribute
: XMLWhitespace XMLName XMLWhitespaceOpt "=" XMLWhitespaceOpt XMLAttributeValue_
;
XMLElementContent
: XMLExpression XMLElementContentOpt
| XMLMarkup XMLElementContentOpt
| XMLText XMLElementContentOpt
| XMLElement XMLElementContentOpt
;
XMLElementContentOpt
: XMLElementContent
|
;
/* }}} */
/* 11.1.5 XMLList Initialiser {{{ */
XMLListInitialiser
: "<>" LexPushInOff LexPushXMLContent XMLElementContent LexPop LexPopIn ">" { $$ = CYNew CYXMLList($4); }
;
/* }}} */
/* 11.2 Left-Hand-Side Expressions {{{ */
PropertyIdentifier_
: Identifier { $$ = $1; }
| PropertyIdentifier { $$ = $1; }
;
MemberAccess
: "." PropertyIdentifier { $$ = CYNew CYPropertyMember(NULL, $2); }
| ".." PropertyIdentifier_ { $$ = CYNew CYDescendantMember(NULL, $2); }
| "." "(" Expression ")" { $$ = CYNew CYFilteringPredicate(NULL, $3); }
;
/* }}} */
/* 12.1 The default xml namespace Statement {{{ */
/* XXX: DefaultXMLNamespaceStatement
: "default" "xml" "namespace" "=" Expression Terminator { $$ = CYNew CYDefaultXMLNamespace($5); }
;
Statement__
: DefaultXMLNamespaceStatement { $$ = $1; }
; */
/* }}} */
@end
/* ECMAScript5: Object Literal Trailing Comma {{{ */
PropertyNameAndValueList_
: "," { $$ = NULL; }
;
/* }}} */
/* JavaScript 1.7: Array Comprehensions {{{ */
IfComprehension
: "if" "(" Expression ")" { $$ = CYNew CYIfComprehension($3); }
;
ForComprehension
: "for" "(" LexPushInOn Identifier LexPopIn "!in" Expression ")" { $$ = CYNew CYForInComprehension($4, $7); }
| "for" "each" "(" LexPushInOn Identifier LexPopIn "!in" Expression ")" { $$ = CYNew CYForEachInComprehension($5, $8); }
;
ComprehensionList
: ForComprehension ComprehensionListOpt { $1->SetNext($2); $$ = $1; }
;
ComprehensionListOpt
: ComprehensionList { $$ = $1; }
| IfComprehension { $$ = $1; }
| { $$ = NULL; }
;
PrimaryExpression
: "[" LexPushInOff AssignmentExpression ComprehensionList LexPopIn "]" { $$ = CYNew CYArrayComprehension($3, $4); }
;
/* }}} */
/* JavaScript 1.7: for each {{{ */
ForInStatement
: "for" "each" "(" LexPushInOn ForInStatementInitialiser LexPopIn "!in" Expression ")" Statement { $$ = CYNew CYForEachIn($5, $8, $10); }
;
/* }}} */
/* JavaScript 1.7: let Statements {{{ */
LetStatement
: "let" "(" VariableDeclarationList ")" Statement { $$ = CYNew CYLetStatement($3, $5); }
;
Statement__
: LetStatement
;
/* }}} */
/* JavaScript FTW: Ruby Blocks {{{ */
RubyProcParameterList_
: "," RubyProcParameterList { $$ = $2; }
| { $$ = NULL; }
;
RubyProcParameterList
: Identifier RubyProcParameterList_ { $$ = CYNew CYFunctionParameter(CYNew CYDeclaration($1), $2); }
| { $$ = NULL; }
;
RubyProcParameters
: "|" RubyProcParameterList "|" { $$ = $2; }
| "||" { $$ = NULL; }
;
RubyProcParametersOpt
: RubyProcParameters
| { $$ = NULL; }
;
RubyProcExpression
: "{" RubyProcParametersOpt StatementListOpt "}" { $$ = CYNew CYRubyProc($2, $3); }
;
PrimaryExpression
: "{" LexPushInOff RubyProcParameters StatementListOpt LexPopIn "}" { $$ = CYNew CYRubyProc($3, $4); }
;
CallExpression
: CallExpression_ RubyProcExpression { $$ = CYNew CYRubyBlock($1, $2); }
;
/* }}} */
%%