include: Add definition of IKsControl interface in dmksctrl.h.
[wine] / dlls / jscript / parser.y
1 /*
2  * Copyright 2008 Jacek Caban for CodeWeavers
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17  */
18
19 %{
20
21 #include "jscript.h"
22 #include "engine.h"
23
24 #define YYLEX_PARAM ctx
25 #define YYPARSE_PARAM ctx
26
27 static int parser_error(const char*);
28 static void set_error(parser_ctx_t*,UINT);
29 static BOOL explicit_error(parser_ctx_t*,void*,WCHAR);
30 static BOOL allow_auto_semicolon(parser_ctx_t*);
31 static void program_parsed(parser_ctx_t*,source_elements_t*);
32
33 typedef struct _statement_list_t {
34     statement_t *head;
35     statement_t *tail;
36 } statement_list_t;
37
38 static literal_t *new_string_literal(parser_ctx_t*,const WCHAR*);
39 static literal_t *new_null_literal(parser_ctx_t*);
40
41 typedef struct _property_list_t {
42     prop_val_t *head;
43     prop_val_t *tail;
44 } property_list_t;
45
46 static property_list_t *new_property_list(parser_ctx_t*,literal_t*,expression_t*);
47 static property_list_t *property_list_add(parser_ctx_t*,property_list_t*,literal_t*,expression_t*);
48
49 typedef struct _element_list_t {
50     array_element_t *head;
51     array_element_t *tail;
52 } element_list_t;
53
54 static element_list_t *new_element_list(parser_ctx_t*,int,expression_t*);
55 static element_list_t *element_list_add(parser_ctx_t*,element_list_t*,int,expression_t*);
56
57 typedef struct _argument_list_t {
58     argument_t *head;
59     argument_t *tail;
60 } argument_list_t;
61
62 static argument_list_t *new_argument_list(parser_ctx_t*,expression_t*);
63 static argument_list_t *argument_list_add(parser_ctx_t*,argument_list_t*,expression_t*);
64
65 typedef struct _case_list_t {
66     case_clausule_t *head;
67     case_clausule_t *tail;
68 } case_list_t;
69
70 static catch_block_t *new_catch_block(parser_ctx_t*,const WCHAR*,statement_t*);
71 static case_clausule_t *new_case_clausule(parser_ctx_t*,expression_t*,statement_list_t*);
72 static case_list_t *new_case_list(parser_ctx_t*,case_clausule_t*);
73 static case_list_t *case_list_add(parser_ctx_t*,case_list_t*,case_clausule_t*);
74 static case_clausule_t *new_case_block(parser_ctx_t*,case_list_t*,case_clausule_t*,case_list_t*);
75
76 typedef struct _variable_list_t {
77     variable_declaration_t *head;
78     variable_declaration_t *tail;
79 } variable_list_t;
80
81 static variable_declaration_t *new_variable_declaration(parser_ctx_t*,const WCHAR*,expression_t*);
82 static variable_list_t *new_variable_list(parser_ctx_t*,variable_declaration_t*);
83 static variable_list_t *variable_list_add(parser_ctx_t*,variable_list_t*,variable_declaration_t*);
84
85 static void *new_statement(parser_ctx_t*,statement_type_t,size_t);
86 static statement_t *new_block_statement(parser_ctx_t*,statement_list_t*);
87 static statement_t *new_var_statement(parser_ctx_t*,variable_list_t*);
88 static statement_t *new_expression_statement(parser_ctx_t*,expression_t*);
89 static statement_t *new_if_statement(parser_ctx_t*,expression_t*,statement_t*,statement_t*);
90 static statement_t *new_while_statement(parser_ctx_t*,BOOL,expression_t*,statement_t*);
91 static statement_t *new_for_statement(parser_ctx_t*,variable_list_t*,expression_t*,expression_t*,
92         expression_t*,statement_t*);
93 static statement_t *new_forin_statement(parser_ctx_t*,variable_declaration_t*,expression_t*,expression_t*,statement_t*);
94 static statement_t *new_continue_statement(parser_ctx_t*,const WCHAR*);
95 static statement_t *new_break_statement(parser_ctx_t*,const WCHAR*);
96 static statement_t *new_return_statement(parser_ctx_t*,expression_t*);
97 static statement_t *new_with_statement(parser_ctx_t*,expression_t*,statement_t*);
98 static statement_t *new_labelled_statement(parser_ctx_t*,const WCHAR*,statement_t*);
99 static statement_t *new_switch_statement(parser_ctx_t*,expression_t*,case_clausule_t*);
100 static statement_t *new_throw_statement(parser_ctx_t*,expression_t*);
101 static statement_t *new_try_statement(parser_ctx_t*,statement_t*,catch_block_t*,statement_t*);
102
103 struct statement_list_t {
104    statement_t *head;
105    statement_t *tail;
106 };
107
108 static statement_list_t *new_statement_list(parser_ctx_t*,statement_t*);
109 static statement_list_t *statement_list_add(statement_list_t*,statement_t*);
110
111 typedef struct _parameter_list_t {
112     parameter_t *head;
113     parameter_t *tail;
114 } parameter_list_t;
115
116 static parameter_list_t *new_parameter_list(parser_ctx_t*,const WCHAR*);
117 static parameter_list_t *parameter_list_add(parser_ctx_t*,parameter_list_t*,const WCHAR*);
118
119 static void *new_expression(parser_ctx_t *ctx,expression_type_t,size_t);
120 static expression_t *new_function_expression(parser_ctx_t*,const WCHAR*,parameter_list_t*,
121         source_elements_t*,const WCHAR*,DWORD);
122 static expression_t *new_binary_expression(parser_ctx_t*,expression_type_t,expression_t*,expression_t*);
123 static expression_t *new_unary_expression(parser_ctx_t*,expression_type_t,expression_t*);
124 static expression_t *new_conditional_expression(parser_ctx_t*,expression_t*,expression_t*,expression_t*);
125 static expression_t *new_member_expression(parser_ctx_t*,expression_t*,const WCHAR*);
126 static expression_t *new_new_expression(parser_ctx_t*,expression_t*,argument_list_t*);
127 static expression_t *new_call_expression(parser_ctx_t*,expression_t*,argument_list_t*);
128 static expression_t *new_identifier_expression(parser_ctx_t*,const WCHAR*);
129 static expression_t *new_literal_expression(parser_ctx_t*,literal_t*);
130 static expression_t *new_array_literal_expression(parser_ctx_t*,element_list_t*,int);
131 static expression_t *new_prop_and_value_expression(parser_ctx_t*,property_list_t*);
132
133 static source_elements_t *new_source_elements(parser_ctx_t*);
134 static source_elements_t *source_elements_add_statement(source_elements_t*,statement_t*);
135
136 %}
137
138 %pure_parser
139 %start Program
140
141 %union {
142     int                     ival;
143     const WCHAR             *srcptr;
144     LPCWSTR                 wstr;
145     literal_t               *literal;
146     struct _argument_list_t *argument_list;
147     case_clausule_t         *case_clausule;
148     struct _case_list_t     *case_list;
149     catch_block_t           *catch_block;
150     struct _element_list_t  *element_list;
151     expression_t            *expr;
152     const WCHAR            *identifier;
153     struct _parameter_list_t *parameter_list;
154     struct _property_list_t *property_list;
155     source_elements_t       *source_elements;
156     statement_t             *statement;
157     struct _statement_list_t *statement_list;
158     struct _variable_list_t *variable_list;
159     variable_declaration_t  *variable_declaration;
160 }
161
162 /* keywords */
163 %token kBREAK kCASE kCATCH kCONTINUE kDEFAULT kDELETE kDO kELSE kIF kFINALLY kFOR kIN
164 %token kINSTANCEOF kNEW kNULL kRETURN kSWITCH kTHIS kTHROW kTRUE kFALSE kTRY kTYPEOF kVAR kVOID kWHILE kWITH
165 %token tANDAND tOROR tINC tDEC tHTMLCOMMENT kDIVEQ
166
167 %token <srcptr> kFUNCTION '}'
168
169 /* tokens */
170 %token <identifier> tIdentifier
171 %token <ival> tAssignOper tEqOper tShiftOper tRelOper
172 %token <literal> tNumericLiteral tBooleanLiteral
173 %token <wstr> tStringLiteral
174 %token tEOF
175
176 %type <source_elements> SourceElements
177 %type <source_elements> FunctionBody
178 %type <statement> Statement
179 %type <statement> Block
180 %type <statement> VariableStatement
181 %type <statement> EmptyStatement
182 %type <statement> ExpressionStatement
183 %type <statement> IfStatement
184 %type <statement> IterationStatement
185 %type <statement> ContinueStatement
186 %type <statement> BreakStatement
187 %type <statement> ReturnStatement
188 %type <statement> WithStatement
189 %type <statement> LabelledStatement
190 %type <statement> SwitchStatement
191 %type <statement> ThrowStatement
192 %type <statement> TryStatement
193 %type <statement> Finally
194 %type <statement_list> StatementList StatementList_opt
195 %type <parameter_list> FormalParameterList FormalParameterList_opt
196 %type <expr> Expression Expression_opt Expression_err
197 %type <expr> ExpressionNoIn ExpressionNoIn_opt
198 %type <expr> FunctionExpression
199 %type <expr> AssignmentExpression AssignmentExpressionNoIn
200 %type <expr> ConditionalExpression ConditionalExpressionNoIn
201 %type <expr> LeftHandSideExpression
202 %type <expr> LogicalORExpression LogicalORExpressionNoIn
203 %type <expr> LogicalANDExpression LogicalANDExpressionNoIn
204 %type <expr> BitwiseORExpression BitwiseORExpressionNoIn
205 %type <expr> BitwiseXORExpression BitwiseXORExpressionNoIn
206 %type <expr> BitwiseANDExpression BitwiseANDExpressionNoIn
207 %type <expr> EqualityExpression EqualityExpressionNoIn
208 %type <expr> RelationalExpression RelationalExpressionNoIn
209 %type <expr> ShiftExpression
210 %type <expr> AdditiveExpression
211 %type <expr> MultiplicativeExpression
212 %type <expr> Initialiser_opt Initialiser
213 %type <expr> InitialiserNoIn_opt InitialiserNoIn
214 %type <expr> UnaryExpression
215 %type <expr> PostfixExpression
216 %type <expr> NewExpression
217 %type <expr> CallExpression
218 %type <expr> MemberExpression
219 %type <expr> PrimaryExpression
220 %type <identifier> Identifier_opt
221 %type <variable_list> VariableDeclarationList
222 %type <variable_list> VariableDeclarationListNoIn
223 %type <variable_declaration> VariableDeclaration
224 %type <variable_declaration> VariableDeclarationNoIn
225 %type <case_list> CaseClausules CaseClausules_opt
226 %type <case_clausule> CaseClausule DefaultClausule CaseBlock
227 %type <catch_block> Catch
228 %type <argument_list> Arguments
229 %type <argument_list> ArgumentList
230 %type <literal> Literal
231 %type <expr> ArrayLiteral
232 %type <expr> ObjectLiteral
233 %type <ival> Elision Elision_opt
234 %type <element_list> ElementList
235 %type <property_list> PropertyNameAndValueList
236 %type <literal> PropertyName
237 %type <literal> BooleanLiteral
238 %type <srcptr> KFunction
239 %type <ival> AssignOper
240
241 %nonassoc LOWER_THAN_ELSE
242 %nonassoc kELSE
243
244 %%
245
246 /* ECMA-262 3rd Edition    14 */
247 Program
248        : SourceElements HtmlComment tEOF
249                                 { program_parsed(ctx, $1); }
250
251 HtmlComment
252         : tHTMLCOMMENT          {}
253         | /* empty */           {}
254
255 /* ECMA-262 3rd Edition    14 */
256 SourceElements
257         : /* empty */           { $$ = new_source_elements(ctx); }
258         | SourceElements Statement
259                                 { $$ = source_elements_add_statement($1, $2); }
260
261 /* ECMA-262 3rd Edition    13 */
262 FunctionExpression
263         : KFunction Identifier_opt left_bracket FormalParameterList_opt right_bracket '{' FunctionBody '}'
264                                 { $$ = new_function_expression(ctx, $2, $4, $7, $1, $8-$1+1); }
265
266 KFunction
267         : kFUNCTION             { $$ = $1; }
268
269 /* ECMA-262 3rd Edition    13 */
270 FunctionBody
271         : SourceElements        { $$ = $1; }
272
273 /* ECMA-262 3rd Edition    13 */
274 FormalParameterList
275         : tIdentifier           { $$ = new_parameter_list(ctx, $1); }
276         | FormalParameterList ',' tIdentifier
277                                 { $$ = parameter_list_add(ctx, $1, $3); }
278
279 /* ECMA-262 3rd Edition    13 */
280 FormalParameterList_opt
281         : /* empty */           { $$ = NULL; }
282         | FormalParameterList   { $$ = $1; }
283
284 /* ECMA-262 3rd Edition    12 */
285 Statement
286         : Block                 { $$ = $1; }
287         | VariableStatement     { $$ = $1; }
288         | EmptyStatement        { $$ = $1; }
289         | FunctionExpression    { $$ = new_expression_statement(ctx, $1); }
290         | ExpressionStatement   { $$ = $1; }
291         | IfStatement           { $$ = $1; }
292         | IterationStatement    { $$ = $1; }
293         | ContinueStatement     { $$ = $1; }
294         | BreakStatement        { $$ = $1; }
295         | ReturnStatement       { $$ = $1; }
296         | WithStatement         { $$ = $1; }
297         | LabelledStatement     { $$ = $1; }
298         | SwitchStatement       { $$ = $1; }
299         | ThrowStatement        { $$ = $1; }
300         | TryStatement          { $$ = $1; }
301
302 /* ECMA-262 3rd Edition    12.2 */
303 StatementList
304         : Statement             { $$ = new_statement_list(ctx, $1); }
305         | StatementList Statement
306                                 { $$ = statement_list_add($1, $2); }
307
308 /* ECMA-262 3rd Edition    12.2 */
309 StatementList_opt
310         : /* empty */           { $$ = NULL; }
311         | StatementList         { $$ = $1; }
312
313 /* ECMA-262 3rd Edition    12.1 */
314 Block
315         : '{' StatementList '}' { $$ = new_block_statement(ctx, $2); }
316         | '{' '}'               { $$ = new_block_statement(ctx, NULL); }
317
318 /* ECMA-262 3rd Edition    12.2 */
319 VariableStatement
320         : kVAR VariableDeclarationList semicolon_opt
321                                 { $$ = new_var_statement(ctx, $2); }
322
323 /* ECMA-262 3rd Edition    12.2 */
324 VariableDeclarationList
325         : VariableDeclaration   { $$ = new_variable_list(ctx, $1); }
326         | VariableDeclarationList ',' VariableDeclaration
327                                 { $$ = variable_list_add(ctx, $1, $3); }
328
329 /* ECMA-262 3rd Edition    12.2 */
330 VariableDeclarationListNoIn
331         : VariableDeclarationNoIn
332                                 { $$ = new_variable_list(ctx, $1); }
333         | VariableDeclarationListNoIn ',' VariableDeclarationNoIn
334                                 { $$ = variable_list_add(ctx, $1, $3); }
335
336 /* ECMA-262 3rd Edition    12.2 */
337 VariableDeclaration
338         : tIdentifier Initialiser_opt
339                                 { $$ = new_variable_declaration(ctx, $1, $2); }
340
341 /* ECMA-262 3rd Edition    12.2 */
342 VariableDeclarationNoIn
343         : tIdentifier InitialiserNoIn_opt
344                                 { $$ = new_variable_declaration(ctx, $1, $2); }
345
346 /* ECMA-262 3rd Edition    12.2 */
347 Initialiser_opt
348         : /* empty */           { $$ = NULL; }
349         | Initialiser           { $$ = $1; }
350
351 /* ECMA-262 3rd Edition    12.2 */
352 Initialiser
353         : '=' AssignmentExpression
354                                 { $$ = $2; }
355
356 /* ECMA-262 3rd Edition    12.2 */
357 InitialiserNoIn_opt
358         : /* empty */           { $$ = NULL; }
359         | InitialiserNoIn       { $$ = $1; }
360
361 /* ECMA-262 3rd Edition    12.2 */
362 InitialiserNoIn
363         : '=' AssignmentExpressionNoIn
364                                 { $$ = $2; }
365
366 /* ECMA-262 3rd Edition    12.3 */
367 EmptyStatement
368         : ';'                   { $$ = new_statement(ctx, STAT_EMPTY, 0); }
369
370 /* ECMA-262 3rd Edition    12.4 */
371 ExpressionStatement
372         : Expression semicolon_opt
373                                 { $$ = new_expression_statement(ctx, $1); }
374
375 /* ECMA-262 3rd Edition    12.5 */
376 IfStatement
377         : kIF left_bracket Expression_err right_bracket Statement kELSE Statement
378                                 { $$ = new_if_statement(ctx, $3, $5, $7); }
379         | kIF left_bracket Expression_err right_bracket Statement %prec LOWER_THAN_ELSE
380                                 { $$ = new_if_statement(ctx, $3, $5, NULL); }
381
382 /* ECMA-262 3rd Edition    12.6 */
383 IterationStatement
384         : kDO Statement kWHILE left_bracket Expression_err right_bracket semicolon_opt
385                                 { $$ = new_while_statement(ctx, TRUE, $5, $2); }
386         | kWHILE left_bracket Expression_err right_bracket Statement
387                                 { $$ = new_while_statement(ctx, FALSE, $3, $5); }
388         | kFOR left_bracket ExpressionNoIn_opt
389                                 { if(!explicit_error(ctx, $3, ';')) YYABORT; }
390         semicolon  Expression_opt
391                                 { if(!explicit_error(ctx, $6, ';')) YYABORT; }
392         semicolon Expression_opt right_bracket Statement
393                                 { $$ = new_for_statement(ctx, NULL, $3, $6, $9, $11); }
394         | kFOR left_bracket kVAR VariableDeclarationListNoIn
395                                 { if(!explicit_error(ctx, $4, ';')) YYABORT; }
396         semicolon Expression_opt
397                                 { if(!explicit_error(ctx, $7, ';')) YYABORT; }
398         semicolon Expression_opt right_bracket Statement
399                                 { $$ = new_for_statement(ctx, $4, NULL, $7, $10, $12); }
400         | kFOR left_bracket LeftHandSideExpression kIN Expression_err right_bracket Statement
401                                 { $$ = new_forin_statement(ctx, NULL, $3, $5, $7); }
402         | kFOR left_bracket kVAR VariableDeclarationNoIn kIN Expression_err right_bracket Statement
403                                 { $$ = new_forin_statement(ctx, $4, NULL, $6, $8); }
404
405 /* ECMA-262 3rd Edition    12.7 */
406 ContinueStatement
407         : kCONTINUE /* NONL */ Identifier_opt semicolon_opt
408                                 { $$ = new_continue_statement(ctx, $2); }
409
410 /* ECMA-262 3rd Edition    12.8 */
411 BreakStatement
412         : kBREAK /* NONL */ Identifier_opt semicolon_opt
413                                 { $$ = new_break_statement(ctx, $2); }
414
415 /* ECMA-262 3rd Edition    12.9 */
416 ReturnStatement
417         : kRETURN /* NONL */ Expression_opt semicolon_opt
418                                 { $$ = new_return_statement(ctx, $2); }
419
420 /* ECMA-262 3rd Edition    12.10 */
421 WithStatement
422         : kWITH left_bracket Expression right_bracket Statement
423                                 { $$ = new_with_statement(ctx, $3, $5); }
424
425 /* ECMA-262 3rd Edition    12.12 */
426 LabelledStatement
427         : tIdentifier ':' Statement
428                                 { $$ = new_labelled_statement(ctx, $1, $3); }
429
430 /* ECMA-262 3rd Edition    12.11 */
431 SwitchStatement
432         : kSWITCH left_bracket Expression right_bracket CaseBlock
433                                 { $$ = new_switch_statement(ctx, $3, $5); }
434
435 /* ECMA-262 3rd Edition    12.11 */
436 CaseBlock
437         : '{' CaseClausules_opt '}'
438                                  { $$ = new_case_block(ctx, $2, NULL, NULL); }
439         | '{' CaseClausules_opt DefaultClausule CaseClausules_opt '}'
440                                  { $$ = new_case_block(ctx, $2, $3, $4); }
441
442 /* ECMA-262 3rd Edition    12.11 */
443 CaseClausules_opt
444         : /* empty */            { $$ = NULL; }
445         | CaseClausules          { $$ = $1; }
446
447 /* ECMA-262 3rd Edition    12.11 */
448 CaseClausules
449         : CaseClausule           { $$ = new_case_list(ctx, $1); }
450         | CaseClausules CaseClausule
451                                  { $$ = case_list_add(ctx, $1, $2); }
452
453 /* ECMA-262 3rd Edition    12.11 */
454 CaseClausule
455         : kCASE Expression ':' StatementList_opt
456                                  { $$ = new_case_clausule(ctx, $2, $4); }
457
458 /* ECMA-262 3rd Edition    12.11 */
459 DefaultClausule
460         : kDEFAULT ':' StatementList_opt
461                                  { $$ = new_case_clausule(ctx, NULL, $3); }
462
463 /* ECMA-262 3rd Edition    12.13 */
464 ThrowStatement
465         : kTHROW /* NONL */ Expression semicolon_opt
466                                 { $$ = new_throw_statement(ctx, $2); }
467
468 /* ECMA-262 3rd Edition    12.14 */
469 TryStatement
470         : kTRY Block Catch      { $$ = new_try_statement(ctx, $2, $3, NULL); }
471         | kTRY Block Finally    { $$ = new_try_statement(ctx, $2, NULL, $3); }
472         | kTRY Block Catch Finally
473                                 { $$ = new_try_statement(ctx, $2, $3, $4); }
474
475 /* ECMA-262 3rd Edition    12.14 */
476 Catch
477         : kCATCH left_bracket tIdentifier right_bracket Block
478                                 { $$ = new_catch_block(ctx, $3, $5); }
479
480 /* ECMA-262 3rd Edition    12.14 */
481 Finally
482         : kFINALLY Block        { $$ = $2; }
483
484 /* ECMA-262 3rd Edition    11.14 */
485 Expression_opt
486         : /* empty */           { $$ = NULL; }
487         | Expression            { $$ = $1; }
488
489 Expression_err
490         : Expression            { $$ = $1; }
491         | error                 { set_error(ctx, JS_E_SYNTAX); YYABORT; }
492
493 /* ECMA-262 3rd Edition    11.14 */
494 Expression
495         : AssignmentExpression  { $$ = $1; }
496         | Expression ',' AssignmentExpression
497                                 { $$ = new_binary_expression(ctx, EXPR_COMMA, $1, $3); }
498
499 /* ECMA-262 3rd Edition    11.14 */
500 ExpressionNoIn_opt
501         : /* empty */           { $$ = NULL; }
502         | ExpressionNoIn        { $$ = $1; }
503
504 /* ECMA-262 3rd Edition    11.14 */
505 ExpressionNoIn
506         : AssignmentExpressionNoIn
507                                 { $$ = $1; }
508         | ExpressionNoIn ',' AssignmentExpressionNoIn
509                                 { $$ = new_binary_expression(ctx, EXPR_COMMA, $1, $3); }
510
511 AssignOper
512         : tAssignOper           { $$ = $1; }
513         | kDIVEQ                { $$ = EXPR_ASSIGNDIV; }
514
515 /* ECMA-262 3rd Edition    11.13 */
516 AssignmentExpression
517         : ConditionalExpression { $$ = $1; }
518         | LeftHandSideExpression '=' AssignmentExpression
519                                 { $$ = new_binary_expression(ctx, EXPR_ASSIGN, $1, $3); }
520         | LeftHandSideExpression AssignOper AssignmentExpression
521                                 { $$ = new_binary_expression(ctx, $2, $1, $3); }
522
523 /* ECMA-262 3rd Edition    11.13 */
524 AssignmentExpressionNoIn
525         : ConditionalExpressionNoIn
526                                 { $$ = $1; }
527         | LeftHandSideExpression '=' AssignmentExpressionNoIn
528                                 { $$ = new_binary_expression(ctx, EXPR_ASSIGN, $1, $3); }
529         | LeftHandSideExpression AssignOper AssignmentExpressionNoIn
530                                 { $$ = new_binary_expression(ctx, $2, $1, $3); }
531
532 /* ECMA-262 3rd Edition    11.12 */
533 ConditionalExpression
534         : LogicalORExpression   { $$ = $1; }
535         | LogicalORExpression '?' AssignmentExpression ':' AssignmentExpression
536                                 { $$ = new_conditional_expression(ctx, $1, $3, $5); }
537
538 /* ECMA-262 3rd Edition    11.12 */
539 ConditionalExpressionNoIn
540         : LogicalORExpressionNoIn
541                                 { $$ = $1; }
542         | LogicalORExpressionNoIn '?' AssignmentExpressionNoIn ':' AssignmentExpressionNoIn
543                                 { $$ = new_conditional_expression(ctx, $1, $3, $5); }
544
545 /* ECMA-262 3rd Edition    11.11 */
546 LogicalORExpression
547         : LogicalANDExpression  { $$ = $1; }
548         | LogicalORExpression tOROR LogicalANDExpression
549                                 { $$ = new_binary_expression(ctx, EXPR_OR, $1, $3); }
550
551 /* ECMA-262 3rd Edition    11.11 */
552 LogicalORExpressionNoIn
553         : LogicalANDExpressionNoIn
554                                 { $$ = $1; }
555         | LogicalORExpressionNoIn tOROR LogicalANDExpressionNoIn
556                                 { $$ = new_binary_expression(ctx, EXPR_OR, $1, $3); }
557
558 /* ECMA-262 3rd Edition    11.11 */
559 LogicalANDExpression
560         : BitwiseORExpression   { $$ = $1; }
561         | LogicalANDExpression tANDAND BitwiseORExpression
562                                 { $$ = new_binary_expression(ctx, EXPR_AND, $1, $3); }
563
564 /* ECMA-262 3rd Edition    11.11 */
565 LogicalANDExpressionNoIn
566         : BitwiseORExpressionNoIn
567                                 { $$ = $1; }
568         | LogicalANDExpressionNoIn tANDAND BitwiseORExpressionNoIn
569                                 { $$ = new_binary_expression(ctx, EXPR_AND, $1, $3); }
570
571 /* ECMA-262 3rd Edition    11.10 */
572 BitwiseORExpression
573         : BitwiseXORExpression   { $$ = $1; }
574         | BitwiseORExpression '|' BitwiseXORExpression
575                                 { $$ = new_binary_expression(ctx, EXPR_BOR, $1, $3); }
576
577 /* ECMA-262 3rd Edition    11.10 */
578 BitwiseORExpressionNoIn
579         : BitwiseXORExpressionNoIn
580                                 { $$ = $1; }
581         | BitwiseORExpressionNoIn '|' BitwiseXORExpressionNoIn
582                                 { $$ = new_binary_expression(ctx, EXPR_BOR, $1, $3); }
583
584 /* ECMA-262 3rd Edition    11.10 */
585 BitwiseXORExpression
586         : BitwiseANDExpression  { $$ = $1; }
587         | BitwiseXORExpression '^' BitwiseANDExpression
588                                 { $$ = new_binary_expression(ctx, EXPR_BXOR, $1, $3); }
589
590 /* ECMA-262 3rd Edition    11.10 */
591 BitwiseXORExpressionNoIn
592         : BitwiseANDExpressionNoIn
593                                 { $$ = $1; }
594         | BitwiseXORExpressionNoIn '^' BitwiseANDExpressionNoIn
595                                 { $$ = new_binary_expression(ctx, EXPR_BXOR, $1, $3); }
596
597 /* ECMA-262 3rd Edition    11.10 */
598 BitwiseANDExpression
599         : EqualityExpression    { $$ = $1; }
600         | BitwiseANDExpression '&' EqualityExpression
601                                 { $$ = new_binary_expression(ctx, EXPR_BAND, $1, $3); }
602
603 /* ECMA-262 3rd Edition    11.10 */
604 BitwiseANDExpressionNoIn
605         : EqualityExpressionNoIn
606                                 { $$ = $1; }
607         | BitwiseANDExpressionNoIn '&' EqualityExpressionNoIn
608                                 { $$ = new_binary_expression(ctx, EXPR_BAND, $1, $3); }
609
610 /* ECMA-262 3rd Edition    11.9 */
611 EqualityExpression
612         : RelationalExpression  { $$ = $1; }
613         | EqualityExpression tEqOper RelationalExpression
614                                 { $$ = new_binary_expression(ctx, $2, $1, $3); }
615
616 /* ECMA-262 3rd Edition    11.9 */
617 EqualityExpressionNoIn
618         : RelationalExpressionNoIn  { $$ = $1; }
619         | EqualityExpressionNoIn tEqOper RelationalExpressionNoIn
620                                 { $$ = new_binary_expression(ctx, $2, $1, $3); }
621
622 /* ECMA-262 3rd Edition    11.8 */
623 RelationalExpression
624         : ShiftExpression       { $$ = $1; }
625         | RelationalExpression tRelOper ShiftExpression
626                                 { $$ = new_binary_expression(ctx, $2, $1, $3); }
627         | RelationalExpression kINSTANCEOF ShiftExpression
628                                 { $$ = new_binary_expression(ctx, EXPR_INSTANCEOF, $1, $3); }
629         | RelationalExpression kIN ShiftExpression
630                                 { $$ = new_binary_expression(ctx, EXPR_IN, $1, $3); }
631
632 /* ECMA-262 3rd Edition    11.8 */
633 RelationalExpressionNoIn
634         : ShiftExpression       { $$ = $1; }
635         | RelationalExpressionNoIn tRelOper ShiftExpression
636                                 { $$ = new_binary_expression(ctx, $2, $1, $3); }
637         | RelationalExpressionNoIn kINSTANCEOF ShiftExpression
638                                 { $$ = new_binary_expression(ctx, EXPR_INSTANCEOF, $1, $3); }
639
640 /* ECMA-262 3rd Edition    11.7 */
641 ShiftExpression
642         : AdditiveExpression    { $$ = $1; }
643         | ShiftExpression tShiftOper AdditiveExpression
644                                 { $$ = new_binary_expression(ctx, $2, $1, $3); }
645
646 /* ECMA-262 3rd Edition    11.6 */
647 AdditiveExpression
648         : MultiplicativeExpression
649                                 { $$ = $1; }
650         | AdditiveExpression '+' MultiplicativeExpression
651                                 { $$ = new_binary_expression(ctx, EXPR_ADD, $1, $3); }
652         | AdditiveExpression '-' MultiplicativeExpression
653                                 { $$ = new_binary_expression(ctx, EXPR_SUB, $1, $3); }
654
655 /* ECMA-262 3rd Edition    11.5 */
656 MultiplicativeExpression
657         : UnaryExpression       { $$ = $1; }
658         | MultiplicativeExpression '*' UnaryExpression
659                                 { $$ = new_binary_expression(ctx, EXPR_MUL, $1, $3); }
660         | MultiplicativeExpression '/' UnaryExpression
661                                 { $$ = new_binary_expression(ctx, EXPR_DIV, $1, $3); }
662         | MultiplicativeExpression '%' UnaryExpression
663                                 { $$ = new_binary_expression(ctx, EXPR_MOD, $1, $3); }
664
665 /* ECMA-262 3rd Edition    11.4 */
666 UnaryExpression
667         : PostfixExpression     { $$ = $1; }
668         | kDELETE UnaryExpression
669                                 { $$ = new_unary_expression(ctx, EXPR_DELETE, $2); }
670         | kVOID UnaryExpression { $$ = new_unary_expression(ctx, EXPR_VOID, $2); }
671         | kTYPEOF UnaryExpression
672                                 { $$ = new_unary_expression(ctx, EXPR_TYPEOF, $2); }
673         | tINC UnaryExpression  { $$ = new_unary_expression(ctx, EXPR_PREINC, $2); }
674         | tDEC UnaryExpression  { $$ = new_unary_expression(ctx, EXPR_PREDEC, $2); }
675         | '+' UnaryExpression   { $$ = new_unary_expression(ctx, EXPR_PLUS, $2); }
676         | '-' UnaryExpression   { $$ = new_unary_expression(ctx, EXPR_MINUS, $2); }
677         | '~' UnaryExpression   { $$ = new_unary_expression(ctx, EXPR_BITNEG, $2); }
678         | '!' UnaryExpression   { $$ = new_unary_expression(ctx, EXPR_LOGNEG, $2); }
679
680 /* ECMA-262 3rd Edition    11.2 */
681 PostfixExpression
682         : LeftHandSideExpression
683                                 { $$ = $1; }
684         | LeftHandSideExpression /* NONL */ tINC
685                                 { $$ = new_unary_expression(ctx, EXPR_POSTINC, $1); }
686         | LeftHandSideExpression /* NONL */ tDEC
687                                 { $$ = new_unary_expression(ctx, EXPR_POSTDEC, $1); }
688
689
690 /* ECMA-262 3rd Edition    11.2 */
691 LeftHandSideExpression
692         : NewExpression         { $$ = $1; }
693         | CallExpression        { $$ = $1; }
694
695 /* ECMA-262 3rd Edition    11.2 */
696 NewExpression
697         : MemberExpression      { $$ = $1; }
698         | kNEW NewExpression    { $$ = new_new_expression(ctx, $2, NULL); }
699
700 /* ECMA-262 3rd Edition    11.2 */
701 MemberExpression
702         : PrimaryExpression     { $$ = $1; }
703         | FunctionExpression    { $$ = $1; }
704         | MemberExpression '[' Expression ']'
705                                 { $$ = new_binary_expression(ctx, EXPR_ARRAY, $1, $3); }
706         | MemberExpression '.' tIdentifier
707                                 { $$ = new_member_expression(ctx, $1, $3); }
708         | kNEW MemberExpression Arguments
709                                 { $$ = new_new_expression(ctx, $2, $3); }
710
711 /* ECMA-262 3rd Edition    11.2 */
712 CallExpression
713         : MemberExpression Arguments
714                                 { $$ = new_call_expression(ctx, $1, $2); }
715         | CallExpression Arguments
716                                 { $$ = new_call_expression(ctx, $1, $2); }
717         | CallExpression '[' Expression ']'
718                                 { $$ = new_binary_expression(ctx, EXPR_ARRAY, $1, $3); }
719         | CallExpression '.' tIdentifier
720                                 { $$ = new_member_expression(ctx, $1, $3); }
721
722 /* ECMA-262 3rd Edition    11.2 */
723 Arguments
724         : '(' ')'               { $$ = NULL; }
725         | '(' ArgumentList ')'  { $$ = $2; }
726
727 /* ECMA-262 3rd Edition    11.2 */
728 ArgumentList
729         : AssignmentExpression  { $$ = new_argument_list(ctx, $1); }
730         | ArgumentList ',' AssignmentExpression
731                                 { $$ = argument_list_add(ctx, $1, $3); }
732
733 /* ECMA-262 3rd Edition    11.1 */
734 PrimaryExpression
735         : kTHIS                 { $$ = new_expression(ctx, EXPR_THIS, 0); }
736         | tIdentifier           { $$ = new_identifier_expression(ctx, $1); }
737         | Literal               { $$ = new_literal_expression(ctx, $1); }
738         | ArrayLiteral          { $$ = $1; }
739         | ObjectLiteral         { $$ = $1; }
740         | '(' Expression ')'    { $$ = $2; }
741
742 /* ECMA-262 3rd Edition    11.1.4 */
743 ArrayLiteral
744         : '[' ']'               { $$ = new_array_literal_expression(ctx, NULL, 0); }
745         | '[' Elision ']'       { $$ = new_array_literal_expression(ctx, NULL, $2+1); }
746         | '[' ElementList ']'   { $$ = new_array_literal_expression(ctx, $2, 0); }
747         | '[' ElementList ',' Elision_opt ']'
748                                 { $$ = new_array_literal_expression(ctx, $2, $4+1); }
749
750 /* ECMA-262 3rd Edition    11.1.4 */
751 ElementList
752         : Elision_opt AssignmentExpression
753                                 { $$ = new_element_list(ctx, $1, $2); }
754         | ElementList ',' Elision_opt AssignmentExpression
755                                 { $$ = element_list_add(ctx, $1, $3, $4); }
756
757 /* ECMA-262 3rd Edition    11.1.4 */
758 Elision
759         : ','                   { $$ = 1; }
760         | Elision ','           { $$ = $1 + 1; }
761
762 /* ECMA-262 3rd Edition    11.1.4 */
763 Elision_opt
764         : /* empty */           { $$ = 0; }
765         | Elision               { $$ = $1; }
766
767 /* ECMA-262 3rd Edition    11.1.5 */
768 ObjectLiteral
769         : '{' '}'               { $$ = new_prop_and_value_expression(ctx, NULL); }
770         | '{' PropertyNameAndValueList '}'
771                                 { $$ = new_prop_and_value_expression(ctx, $2); }
772
773 /* ECMA-262 3rd Edition    11.1.5 */
774 PropertyNameAndValueList
775         : PropertyName ':' AssignmentExpression
776                                 { $$ = new_property_list(ctx, $1, $3); }
777         | PropertyNameAndValueList ',' PropertyName ':' AssignmentExpression
778                                 { $$ = property_list_add(ctx, $1, $3, $5); }
779
780 /* ECMA-262 3rd Edition    11.1.5 */
781 PropertyName
782         : tIdentifier           { $$ = new_string_literal(ctx, $1); }
783         | tStringLiteral        { $$ = new_string_literal(ctx, $1); }
784         | tNumericLiteral       { $$ = $1; }
785
786 /* ECMA-262 3rd Edition    7.6 */
787 Identifier_opt
788         : /* empty*/            { $$ = NULL; }
789         | tIdentifier           { $$ = $1; }
790
791 /* ECMA-262 3rd Edition    7.8 */
792 Literal
793         : kNULL                 { $$ = new_null_literal(ctx); }
794         | BooleanLiteral        { $$ = $1; }
795         | tNumericLiteral       { $$ = $1; }
796         | tStringLiteral        { $$ = new_string_literal(ctx, $1); }
797         | '/'                   { $$ = parse_regexp(ctx);
798                                   if(!$$) YYABORT; }
799         | kDIVEQ                { $$ = parse_regexp(ctx);
800                                   if(!$$) YYABORT; }
801
802 /* ECMA-262 3rd Edition    7.8.2 */
803 BooleanLiteral
804         : kTRUE                 { $$ = new_boolean_literal(ctx, VARIANT_TRUE); }
805         | kFALSE                { $$ = new_boolean_literal(ctx, VARIANT_FALSE); }
806         | tBooleanLiteral       { $$ = $1; }
807
808 semicolon_opt
809         : ';'
810         | error                 { if(!allow_auto_semicolon(ctx)) {YYABORT;} }
811
812 left_bracket
813         : '('
814         | error                 { set_error(ctx, JS_E_MISSING_LBRACKET); YYABORT; }
815
816 right_bracket
817         : ')'
818         | error                 { set_error(ctx, JS_E_MISSING_RBRACKET); YYABORT; }
819
820 semicolon
821         : ';'
822         | error                 { set_error(ctx, JS_E_MISSING_SEMICOLON); YYABORT; }
823
824 %%
825
826 static BOOL allow_auto_semicolon(parser_ctx_t *ctx)
827 {
828     return ctx->nl || ctx->ptr == ctx->end || *(ctx->ptr-1) == '}';
829 }
830
831 static void *new_statement(parser_ctx_t *ctx, statement_type_t type, size_t size)
832 {
833     statement_t *stat;
834
835     stat = parser_alloc(ctx, size ? size : sizeof(*stat));
836     if(!stat)
837         return NULL;
838
839     stat->type = type;
840     stat->next = NULL;
841
842     return stat;
843 }
844
845 static literal_t *new_string_literal(parser_ctx_t *ctx, const WCHAR *str)
846 {
847     literal_t *ret = parser_alloc(ctx, sizeof(literal_t));
848
849     ret->type = LT_STRING;
850     ret->u.wstr = str;
851
852     return ret;
853 }
854
855 static literal_t *new_null_literal(parser_ctx_t *ctx)
856 {
857     literal_t *ret = parser_alloc(ctx, sizeof(literal_t));
858
859     ret->type = LT_NULL;
860
861     return ret;
862 }
863
864 static prop_val_t *new_prop_val(parser_ctx_t *ctx, literal_t *name, expression_t *value)
865 {
866     prop_val_t *ret = parser_alloc(ctx, sizeof(prop_val_t));
867
868     ret->name = name;
869     ret->value = value;
870     ret->next = NULL;
871
872     return ret;
873 }
874
875 static property_list_t *new_property_list(parser_ctx_t *ctx, literal_t *name, expression_t *value)
876 {
877     property_list_t *ret = parser_alloc_tmp(ctx, sizeof(property_list_t));
878
879     ret->head = ret->tail = new_prop_val(ctx, name, value);
880
881     return ret;
882 }
883
884 static property_list_t *property_list_add(parser_ctx_t *ctx, property_list_t *list, literal_t *name, expression_t *value)
885 {
886     list->tail = list->tail->next = new_prop_val(ctx, name, value);
887
888     return list;
889 }
890
891 static array_element_t *new_array_element(parser_ctx_t *ctx, int elision, expression_t *expr)
892 {
893     array_element_t *ret = parser_alloc(ctx, sizeof(array_element_t));
894
895     ret->elision = elision;
896     ret->expr = expr;
897     ret->next = NULL;
898
899     return ret;
900 }
901
902 static element_list_t *new_element_list(parser_ctx_t *ctx, int elision, expression_t *expr)
903 {
904     element_list_t *ret = parser_alloc_tmp(ctx, sizeof(element_list_t));
905
906     ret->head = ret->tail = new_array_element(ctx, elision, expr);
907
908     return ret;
909 }
910
911 static element_list_t *element_list_add(parser_ctx_t *ctx, element_list_t *list, int elision, expression_t *expr)
912 {
913     list->tail = list->tail->next = new_array_element(ctx, elision, expr);
914
915     return list;
916 }
917
918 static argument_t *new_argument(parser_ctx_t *ctx, expression_t *expr)
919 {
920     argument_t *ret = parser_alloc(ctx, sizeof(argument_t));
921
922     ret->expr = expr;
923     ret->next = NULL;
924
925     return ret;
926 }
927
928 static argument_list_t *new_argument_list(parser_ctx_t *ctx, expression_t *expr)
929 {
930     argument_list_t *ret = parser_alloc_tmp(ctx, sizeof(argument_list_t));
931
932     ret->head = ret->tail = new_argument(ctx, expr);
933
934     return ret;
935 }
936
937 static argument_list_t *argument_list_add(parser_ctx_t *ctx, argument_list_t *list, expression_t *expr)
938 {
939     list->tail = list->tail->next = new_argument(ctx, expr);
940
941     return list;
942 }
943
944 static catch_block_t *new_catch_block(parser_ctx_t *ctx, const WCHAR *identifier, statement_t *statement)
945 {
946     catch_block_t *ret = parser_alloc(ctx, sizeof(catch_block_t));
947
948     ret->identifier = identifier;
949     ret->statement = statement;
950
951     return ret;
952 }
953
954 static case_clausule_t *new_case_clausule(parser_ctx_t *ctx, expression_t *expr, statement_list_t *stat_list)
955 {
956     case_clausule_t *ret = parser_alloc(ctx, sizeof(case_clausule_t));
957
958     ret->expr = expr;
959     ret->stat = stat_list ? stat_list->head : NULL;
960     ret->next = NULL;
961
962     return ret;
963 }
964
965 static case_list_t *new_case_list(parser_ctx_t *ctx, case_clausule_t *case_clausule)
966 {
967     case_list_t *ret = parser_alloc_tmp(ctx, sizeof(case_list_t));
968
969     ret->head = ret->tail = case_clausule;
970
971     return ret;
972 }
973
974 static case_list_t *case_list_add(parser_ctx_t *ctx, case_list_t *list, case_clausule_t *case_clausule)
975 {
976     list->tail = list->tail->next = case_clausule;
977
978     return list;
979 }
980
981 static case_clausule_t *new_case_block(parser_ctx_t *ctx, case_list_t *case_list1,
982         case_clausule_t *default_clausule, case_list_t *case_list2)
983 {
984     case_clausule_t *ret = NULL, *iter = NULL, *iter2;
985     statement_t *stat = NULL;
986
987     if(case_list1) {
988         ret = case_list1->head;
989         iter = case_list1->tail;
990     }
991
992     if(default_clausule) {
993         if(ret)
994             iter = iter->next = default_clausule;
995         else
996             ret = iter = default_clausule;
997     }
998
999     if(case_list2) {
1000         if(ret)
1001             iter->next = case_list2->head;
1002         else
1003             ret = case_list2->head;
1004     }
1005
1006     if(!ret)
1007         return NULL;
1008
1009     for(iter = ret; iter; iter = iter->next) {
1010         for(iter2 = iter; iter2 && !iter2->stat; iter2 = iter2->next);
1011         if(!iter2)
1012             break;
1013
1014         while(iter != iter2) {
1015             iter->stat = iter2->stat;
1016             iter = iter->next;
1017         }
1018
1019         if(stat) {
1020             while(stat->next)
1021                 stat = stat->next;
1022             stat->next = iter->stat;
1023         }else {
1024             stat = iter->stat;
1025         }
1026     }
1027
1028     return ret;
1029 }
1030
1031 static statement_t *new_block_statement(parser_ctx_t *ctx, statement_list_t *list)
1032 {
1033     block_statement_t *ret;
1034
1035     ret = new_statement(ctx, STAT_BLOCK, sizeof(*ret));
1036     if(!ret)
1037         return NULL;
1038
1039     ret->stat_list = list ? list->head : NULL;
1040
1041     return &ret->stat;
1042 }
1043
1044 static variable_declaration_t *new_variable_declaration(parser_ctx_t *ctx, const WCHAR *identifier, expression_t *expr)
1045 {
1046     variable_declaration_t *ret = parser_alloc(ctx, sizeof(variable_declaration_t));
1047
1048     ret->identifier = identifier;
1049     ret->expr = expr;
1050     ret->next = NULL;
1051     ret->global_next = NULL;
1052
1053     return ret;
1054 }
1055
1056 static variable_list_t *new_variable_list(parser_ctx_t *ctx, variable_declaration_t *decl)
1057 {
1058     variable_list_t *ret = parser_alloc_tmp(ctx, sizeof(variable_list_t));
1059
1060     ret->head = ret->tail = decl;
1061
1062     return ret;
1063 }
1064
1065 static variable_list_t *variable_list_add(parser_ctx_t *ctx, variable_list_t *list, variable_declaration_t *decl)
1066 {
1067     list->tail = list->tail->next = decl;
1068
1069     return list;
1070 }
1071
1072 static statement_t *new_var_statement(parser_ctx_t *ctx, variable_list_t *variable_list)
1073 {
1074     var_statement_t *ret;
1075
1076     ret = new_statement(ctx, STAT_VAR, sizeof(*ret));
1077     if(!ret)
1078         return NULL;
1079
1080     ret->variable_list = variable_list->head;
1081
1082     return &ret->stat;
1083 }
1084
1085 static statement_t *new_expression_statement(parser_ctx_t *ctx, expression_t *expr)
1086 {
1087     expression_statement_t *ret;
1088
1089     ret = new_statement(ctx, STAT_EXPR, sizeof(*ret));
1090     if(!ret)
1091         return NULL;
1092
1093     ret->expr = expr;
1094
1095     return &ret->stat;
1096 }
1097
1098 static statement_t *new_if_statement(parser_ctx_t *ctx, expression_t *expr, statement_t *if_stat, statement_t *else_stat)
1099 {
1100     if_statement_t *ret;
1101
1102     ret = new_statement(ctx, STAT_IF, sizeof(*ret));
1103     if(!ret)
1104         return NULL;
1105
1106     ret->expr = expr;
1107     ret->if_stat = if_stat;
1108     ret->else_stat = else_stat;
1109
1110     return &ret->stat;
1111 }
1112
1113 static statement_t *new_while_statement(parser_ctx_t *ctx, BOOL dowhile, expression_t *expr, statement_t *stat)
1114 {
1115     while_statement_t *ret;
1116
1117     ret = new_statement(ctx, STAT_WHILE, sizeof(*ret));
1118     if(!ret)
1119         return NULL;
1120
1121     ret->do_while = dowhile;
1122     ret->expr = expr;
1123     ret->statement = stat;
1124
1125     return &ret->stat;
1126 }
1127
1128 static statement_t *new_for_statement(parser_ctx_t *ctx, variable_list_t *variable_list, expression_t *begin_expr,
1129         expression_t *expr, expression_t *end_expr, statement_t *statement)
1130 {
1131     for_statement_t *ret;
1132
1133     ret = new_statement(ctx, STAT_FOR, sizeof(*ret));
1134     if(!ret)
1135         return NULL;
1136
1137     ret->variable_list = variable_list ? variable_list->head : NULL;
1138     ret->begin_expr = begin_expr;
1139     ret->expr = expr;
1140     ret->end_expr = end_expr;
1141     ret->statement = statement;
1142
1143     return &ret->stat;
1144 }
1145
1146 static statement_t *new_forin_statement(parser_ctx_t *ctx, variable_declaration_t *variable, expression_t *expr,
1147         expression_t *in_expr, statement_t *statement)
1148 {
1149     forin_statement_t *ret;
1150
1151     ret = new_statement(ctx, STAT_FORIN, sizeof(*ret));
1152     if(!ret)
1153         return NULL;
1154
1155     ret->variable = variable;
1156     ret->expr = expr;
1157     ret->in_expr = in_expr;
1158     ret->statement = statement;
1159
1160     return &ret->stat;
1161 }
1162
1163 static statement_t *new_continue_statement(parser_ctx_t *ctx, const WCHAR *identifier)
1164 {
1165     branch_statement_t *ret;
1166
1167     ret = new_statement(ctx, STAT_CONTINUE, sizeof(*ret));
1168     if(!ret)
1169         return NULL;
1170
1171     ret->identifier = identifier;
1172
1173     return &ret->stat;
1174 }
1175
1176 static statement_t *new_break_statement(parser_ctx_t *ctx, const WCHAR *identifier)
1177 {
1178     branch_statement_t *ret;
1179
1180     ret = new_statement(ctx, STAT_BREAK, sizeof(*ret));
1181     if(!ret)
1182         return NULL;
1183
1184     ret->identifier = identifier;
1185
1186     return &ret->stat;
1187 }
1188
1189 static statement_t *new_return_statement(parser_ctx_t *ctx, expression_t *expr)
1190 {
1191     expression_statement_t *ret;
1192
1193     ret = new_statement(ctx, STAT_RETURN, sizeof(*ret));
1194     if(!ret)
1195         return NULL;
1196
1197     ret->expr = expr;
1198
1199     return &ret->stat;
1200 }
1201
1202 static statement_t *new_with_statement(parser_ctx_t *ctx, expression_t *expr, statement_t *statement)
1203 {
1204     with_statement_t *ret;
1205
1206     ret = new_statement(ctx, STAT_WITH, sizeof(*ret));
1207     if(!ret)
1208         return NULL;
1209
1210     ret->expr = expr;
1211     ret->statement = statement;
1212
1213     return &ret->stat;
1214 }
1215
1216 static statement_t *new_labelled_statement(parser_ctx_t *ctx, const WCHAR *identifier, statement_t *statement)
1217 {
1218     labelled_statement_t *ret;
1219
1220     ret = new_statement(ctx, STAT_LABEL, sizeof(*ret));
1221     if(!ret)
1222         return NULL;
1223
1224     ret->identifier = identifier;
1225     ret->statement = statement;
1226
1227     return &ret->stat;
1228 }
1229
1230 static statement_t *new_switch_statement(parser_ctx_t *ctx, expression_t *expr, case_clausule_t *case_list)
1231 {
1232     switch_statement_t *ret;
1233
1234     ret = new_statement(ctx, STAT_SWITCH, sizeof(*ret));
1235     if(!ret)
1236         return NULL;
1237
1238     ret->expr = expr;
1239     ret->case_list = case_list;
1240
1241     return &ret->stat;
1242 }
1243
1244 static statement_t *new_throw_statement(parser_ctx_t *ctx, expression_t *expr)
1245 {
1246     expression_statement_t *ret;
1247
1248     ret = new_statement(ctx, STAT_THROW, sizeof(*ret));
1249     if(!ret)
1250         return NULL;
1251
1252     ret->expr = expr;
1253
1254     return &ret->stat;
1255 }
1256
1257 static statement_t *new_try_statement(parser_ctx_t *ctx, statement_t *try_statement,
1258        catch_block_t *catch_block, statement_t *finally_statement)
1259 {
1260     try_statement_t *ret;
1261
1262     ret = new_statement(ctx, STAT_TRY, sizeof(*ret));
1263     if(!ret)
1264         return NULL;
1265
1266     ret->try_statement = try_statement;
1267     ret->catch_block = catch_block;
1268     ret->finally_statement = finally_statement;
1269
1270     return &ret->stat;
1271 }
1272
1273 static parameter_t *new_parameter(parser_ctx_t *ctx, const WCHAR *identifier)
1274 {
1275     parameter_t *ret = parser_alloc(ctx, sizeof(parameter_t));
1276
1277     ret->identifier = identifier;
1278     ret->next = NULL;
1279
1280     return ret;
1281 }
1282
1283 static parameter_list_t *new_parameter_list(parser_ctx_t *ctx, const WCHAR *identifier)
1284 {
1285     parameter_list_t *ret = parser_alloc_tmp(ctx, sizeof(parameter_list_t));
1286
1287     ret->head = ret->tail = new_parameter(ctx, identifier);
1288
1289     return ret;
1290 }
1291
1292 static parameter_list_t *parameter_list_add(parser_ctx_t *ctx, parameter_list_t *list, const WCHAR *identifier)
1293 {
1294     list->tail = list->tail->next = new_parameter(ctx, identifier);
1295
1296     return list;
1297 }
1298
1299 static expression_t *new_function_expression(parser_ctx_t *ctx, const WCHAR *identifier,
1300        parameter_list_t *parameter_list, source_elements_t *source_elements, const WCHAR *src_str, DWORD src_len)
1301 {
1302     function_expression_t *ret = new_expression(ctx, EXPR_FUNC, sizeof(*ret));
1303
1304     ret->identifier = identifier;
1305     ret->parameter_list = parameter_list ? parameter_list->head : NULL;
1306     ret->source_elements = source_elements;
1307     ret->src_str = src_str;
1308     ret->src_len = src_len;
1309     ret->next = NULL;
1310
1311     return &ret->expr;
1312 }
1313
1314 static void *new_expression(parser_ctx_t *ctx, expression_type_t type, size_t size)
1315 {
1316     expression_t *ret = parser_alloc(ctx, size ? size : sizeof(*ret));
1317
1318     ret->type = type;
1319
1320     return ret;
1321 }
1322
1323 static expression_t *new_binary_expression(parser_ctx_t *ctx, expression_type_t type,
1324        expression_t *expression1, expression_t *expression2)
1325 {
1326     binary_expression_t *ret = new_expression(ctx, type, sizeof(*ret));
1327
1328     ret->expression1 = expression1;
1329     ret->expression2 = expression2;
1330
1331     return &ret->expr;
1332 }
1333
1334 static expression_t *new_unary_expression(parser_ctx_t *ctx, expression_type_t type, expression_t *expression)
1335 {
1336     unary_expression_t *ret = new_expression(ctx, type, sizeof(*ret));
1337
1338     ret->expression = expression;
1339
1340     return &ret->expr;
1341 }
1342
1343 static expression_t *new_conditional_expression(parser_ctx_t *ctx, expression_t *expression,
1344        expression_t *true_expression, expression_t *false_expression)
1345 {
1346     conditional_expression_t *ret = new_expression(ctx, EXPR_COND, sizeof(*ret));
1347
1348     ret->expression = expression;
1349     ret->true_expression = true_expression;
1350     ret->false_expression = false_expression;
1351
1352     return &ret->expr;
1353 }
1354
1355 static expression_t *new_member_expression(parser_ctx_t *ctx, expression_t *expression, const WCHAR *identifier)
1356 {
1357     member_expression_t *ret = new_expression(ctx, EXPR_MEMBER, sizeof(*ret));
1358
1359     ret->expression = expression;
1360     ret->identifier = identifier;
1361
1362     return &ret->expr;
1363 }
1364
1365 static expression_t *new_new_expression(parser_ctx_t *ctx, expression_t *expression, argument_list_t *argument_list)
1366 {
1367     call_expression_t *ret = new_expression(ctx, EXPR_NEW, sizeof(*ret));
1368
1369     ret->expression = expression;
1370     ret->argument_list = argument_list ? argument_list->head : NULL;
1371
1372     return &ret->expr;
1373 }
1374
1375 static expression_t *new_call_expression(parser_ctx_t *ctx, expression_t *expression, argument_list_t *argument_list)
1376 {
1377     call_expression_t *ret = new_expression(ctx, EXPR_CALL, sizeof(*ret));
1378
1379     ret->expression = expression;
1380     ret->argument_list = argument_list ? argument_list->head : NULL;
1381
1382     return &ret->expr;
1383 }
1384
1385 static int parser_error(const char *str)
1386 {
1387     return 0;
1388 }
1389
1390 static void set_error(parser_ctx_t *ctx, UINT error)
1391 {
1392     ctx->hres = error;
1393 }
1394
1395 static BOOL explicit_error(parser_ctx_t *ctx, void *obj, WCHAR next)
1396 {
1397     if(obj || *(ctx->ptr-1)==next) return TRUE;
1398
1399     set_error(ctx, JS_E_SYNTAX);
1400     return FALSE;
1401 }
1402
1403
1404 static expression_t *new_identifier_expression(parser_ctx_t *ctx, const WCHAR *identifier)
1405 {
1406     identifier_expression_t *ret = new_expression(ctx, EXPR_IDENT, sizeof(*ret));
1407
1408     ret->identifier = identifier;
1409
1410     return &ret->expr;
1411 }
1412
1413 static expression_t *new_array_literal_expression(parser_ctx_t *ctx, element_list_t *element_list, int length)
1414 {
1415     array_literal_expression_t *ret = new_expression(ctx, EXPR_ARRAYLIT, sizeof(*ret));
1416
1417     ret->element_list = element_list ? element_list->head : NULL;
1418     ret->length = length;
1419
1420     return &ret->expr;
1421 }
1422
1423 static expression_t *new_prop_and_value_expression(parser_ctx_t *ctx, property_list_t *property_list)
1424 {
1425     property_value_expression_t *ret = new_expression(ctx, EXPR_PROPVAL, sizeof(*ret));
1426
1427     ret->property_list = property_list ? property_list->head : NULL;
1428
1429     return &ret->expr;
1430 }
1431
1432 static expression_t *new_literal_expression(parser_ctx_t *ctx, literal_t *literal)
1433 {
1434     literal_expression_t *ret = new_expression(ctx, EXPR_LITERAL, sizeof(*ret));
1435
1436     ret->literal = literal;
1437
1438     return &ret->expr;
1439 }
1440
1441 static source_elements_t *new_source_elements(parser_ctx_t *ctx)
1442 {
1443     source_elements_t *ret = parser_alloc(ctx, sizeof(source_elements_t));
1444
1445     memset(ret, 0, sizeof(*ret));
1446
1447     return ret;
1448 }
1449
1450 static source_elements_t *source_elements_add_statement(source_elements_t *source_elements, statement_t *statement)
1451 {
1452     if(source_elements->statement_tail)
1453         source_elements->statement_tail = source_elements->statement_tail->next = statement;
1454     else
1455         source_elements->statement = source_elements->statement_tail = statement;
1456
1457     return source_elements;
1458 }
1459
1460 static statement_list_t *new_statement_list(parser_ctx_t *ctx, statement_t *statement)
1461 {
1462     statement_list_t *ret =  parser_alloc_tmp(ctx, sizeof(statement_list_t));
1463
1464     ret->head = ret->tail = statement;
1465
1466     return ret;
1467 }
1468
1469 static statement_list_t *statement_list_add(statement_list_t *list, statement_t *statement)
1470 {
1471     list->tail = list->tail->next = statement;
1472
1473     return list;
1474 }
1475
1476 static void program_parsed(parser_ctx_t *ctx, source_elements_t *source)
1477 {
1478     ctx->source = source;
1479     if(!ctx->lexer_error)
1480         ctx->hres = S_OK;
1481 }
1482
1483 void parser_release(parser_ctx_t *ctx)
1484 {
1485     script_release(ctx->script);
1486     jsheap_free(&ctx->heap);
1487     heap_free(ctx);
1488 }
1489
1490 HRESULT script_parse(script_ctx_t *ctx, const WCHAR *code, const WCHAR *delimiter, BOOL from_eval,
1491         parser_ctx_t **ret)
1492 {
1493     parser_ctx_t *parser_ctx;
1494     jsheap_t *mark;
1495     HRESULT hres;
1496
1497     const WCHAR html_tagW[] = {'<','/','s','c','r','i','p','t','>',0};
1498
1499     parser_ctx = heap_alloc_zero(sizeof(parser_ctx_t));
1500     if(!parser_ctx)
1501         return E_OUTOFMEMORY;
1502
1503     parser_ctx->hres = JS_E_SYNTAX;
1504     parser_ctx->is_html = delimiter && !strcmpiW(delimiter, html_tagW);
1505
1506     parser_ctx->begin = parser_ctx->ptr = code;
1507     parser_ctx->end = parser_ctx->begin + strlenW(parser_ctx->begin);
1508
1509     script_addref(ctx);
1510     parser_ctx->script = ctx;
1511
1512     mark = jsheap_mark(&ctx->tmp_heap);
1513     jsheap_init(&parser_ctx->heap);
1514
1515     parser_parse(parser_ctx);
1516     jsheap_clear(mark);
1517     hres = parser_ctx->hres;
1518     if(FAILED(hres)) {
1519         parser_release(parser_ctx);
1520         return hres;
1521     }
1522
1523     *ret = parser_ctx;
1524     return S_OK;
1525 }