2 * Copyright 2008 Jacek Caban for CodeWeavers
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.
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.
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
19 typedef struct _source_elements_t source_elements_t
;
21 typedef struct _parser_ctx_t
{
29 source_elements_t
*source
;
36 struct _parser_ctx_t
*next
;
39 HRESULT
script_parse(script_ctx_t
*,const WCHAR
*,parser_ctx_t
**);
40 void parser_release(parser_ctx_t
*);
42 int parser_lex(void*,parser_ctx_t
*);
44 static inline void parser_addref(parser_ctx_t
*ctx
)
49 static inline void *parser_alloc(parser_ctx_t
*ctx
, DWORD size
)
51 return jsheap_alloc(&ctx
->heap
, size
);
54 static inline void *parser_alloc_tmp(parser_ctx_t
*ctx
, DWORD size
)
56 return jsheap_alloc(&ctx
->tmp_heap
, size
);
59 typedef struct _scope_chain_t
{
62 struct _scope_chain_t
*next
;
65 HRESULT
scope_push(scope_chain_t
*,DispatchEx
*,scope_chain_t
**);
66 void scope_release(scope_chain_t
*);
68 static inline void scope_addref(scope_chain_t
*scope
)
77 scope_chain_t
*scope_chain
;
81 static inline void exec_addref(exec_ctx_t
*ctx
)
86 void exec_release(exec_ctx_t
*);
87 HRESULT
create_exec_ctx(DispatchEx
*,scope_chain_t
*,exec_ctx_t
**);
88 HRESULT
exec_source(exec_ctx_t
*,parser_ctx_t
*,source_elements_t
*,jsexcept_t
*,VARIANT
*);
90 typedef struct _statement_t statement_t
;
91 typedef struct _expression_t expression_t
;
92 typedef struct _parameter_t parameter_t
;
94 HRESULT
create_source_function(parser_ctx_t
*,parameter_t
*,source_elements_t
*,scope_chain_t
*,DispatchEx
**);
107 typedef struct _variable_declaration_t
{
108 const WCHAR
*identifier
;
111 struct _variable_declaration_t
*next
;
112 } variable_declaration_t
;
124 typedef HRESULT (*statement_eval_t
)(exec_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
126 struct _statement_t
{
127 statement_eval_t eval
;
133 statement_t
*stat_list
;
138 variable_declaration_t
*variable_list
;
144 } expression_statement_t
;
149 statement_t
*if_stat
;
150 statement_t
*else_stat
;
156 statement_t
*statement
;
161 variable_declaration_t
*variable_list
;
162 expression_t
*begin_expr
;
164 expression_t
*end_expr
;
165 statement_t
*statement
;
170 variable_declaration_t
*variable
;
172 expression_t
*in_expr
;
173 statement_t
*statement
;
178 const WCHAR
*identifier
;
179 } branch_statement_t
;
184 statement_t
*statement
;
189 const WCHAR
*identifier
;
190 statement_t
*statement
;
191 } labelled_statement_t
;
193 typedef struct _case_clausule_t
{
197 struct _case_clausule_t
*next
;
203 case_clausule_t
*case_list
;
204 } switch_statement_t
;
207 const WCHAR
*identifier
;
208 statement_t
*statement
;
213 statement_t
*try_statement
;
214 catch_block_t
*catch_block
;
215 statement_t
*finally_statement
;
218 HRESULT
block_statement_eval(exec_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
219 HRESULT
var_statement_eval(exec_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
220 HRESULT
empty_statement_eval(exec_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
221 HRESULT
expression_statement_eval(exec_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
222 HRESULT
if_statement_eval(exec_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
223 HRESULT
dowhile_statement_eval(exec_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
224 HRESULT
while_statement_eval(exec_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
225 HRESULT
for_statement_eval(exec_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
226 HRESULT
forin_statement_eval(exec_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
227 HRESULT
continue_statement_eval(exec_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
228 HRESULT
break_statement_eval(exec_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
229 HRESULT
return_statement_eval(exec_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
230 HRESULT
with_statement_eval(exec_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
231 HRESULT
labelled_statement_eval(exec_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
232 HRESULT
switch_statement_eval(exec_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
233 HRESULT
throw_statement_eval(exec_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
234 HRESULT
try_statement_eval(exec_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
255 typedef HRESULT (*expression_eval_t
)(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
257 struct _expression_t
{
258 expression_eval_t eval
;
261 struct _parameter_t
{
262 const WCHAR
*identifier
;
264 struct _parameter_t
*next
;
267 typedef struct _function_declaration_t
{
268 const WCHAR
*identifier
;
269 parameter_t
*parameter_list
;
270 source_elements_t
*source_elements
;
272 struct _function_declaration_t
*next
;
273 } function_declaration_t
;
275 struct _source_elements_t
{
276 statement_t
*statement
;
277 statement_t
*statement_tail
;
278 function_declaration_t
*functions
;
279 function_declaration_t
*functions_tail
;
284 const WCHAR
*identifier
;
285 parameter_t
*parameter_list
;
286 source_elements_t
*source_elements
;
287 } function_expression_t
;
291 expression_t
*expression1
;
292 expression_t
*expression2
;
293 } binary_expression_t
;
297 expression_t
*expression
;
298 } unary_expression_t
;
302 expression_t
*expression
;
303 expression_t
*true_expression
;
304 expression_t
*false_expression
;
305 } conditional_expression_t
;
309 expression_t
*member_expr
;
310 expression_t
*expression
;
311 } array_expression_t
;
315 expression_t
*expression
;
316 const WCHAR
*identifier
;
317 } member_expression_t
;
319 typedef struct _argument_t
{
322 struct _argument_t
*next
;
327 expression_t
*expression
;
328 argument_t
*argument_list
;
333 const WCHAR
*identifier
;
334 } identifier_expression_t
;
339 } literal_expression_t
;
341 typedef struct _array_element_t
{
345 struct _array_element_t
*next
;
350 array_element_t
*element_list
;
352 } array_literal_expression_t
;
354 typedef struct _prop_val_t
{
358 struct _prop_val_t
*next
;
363 prop_val_t
*property_list
;
364 } property_value_expression_t
;
417 HRESULT
function_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
418 HRESULT
conditional_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
419 HRESULT
array_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
420 HRESULT
member_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
421 HRESULT
member_new_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
422 HRESULT
call_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
423 HRESULT
this_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
424 HRESULT
identifier_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
425 HRESULT
literal_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
426 HRESULT
array_literal_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
427 HRESULT
property_value_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
429 HRESULT
comma_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
430 HRESULT
logical_or_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
431 HRESULT
logical_and_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
432 HRESULT
binary_or_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
433 HRESULT
binary_xor_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
434 HRESULT
binary_and_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
435 HRESULT
instanceof_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
436 HRESULT
in_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
437 HRESULT
add_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
438 HRESULT
sub_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
439 HRESULT
mul_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
440 HRESULT
div_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
441 HRESULT
mod_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
442 HRESULT
delete_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
443 HRESULT
void_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
444 HRESULT
typeof_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
445 HRESULT
minus_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
446 HRESULT
plus_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
447 HRESULT
post_increment_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
448 HRESULT
post_decrement_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
449 HRESULT
pre_increment_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
450 HRESULT
pre_decrement_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
451 HRESULT
new_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
452 HRESULT
equal_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
453 HRESULT
equal2_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
454 HRESULT
not_equal_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
455 HRESULT
not_equal2_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
456 HRESULT
less_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
457 HRESULT
lesseq_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
458 HRESULT
greater_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
459 HRESULT
greatereq_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
460 HRESULT
binary_negation_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
461 HRESULT
logical_negation_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
462 HRESULT
left_shift_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
463 HRESULT
right_shift_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
464 HRESULT
right2_shift_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
465 HRESULT
assign_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
466 HRESULT
assign_lshift_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
467 HRESULT
assign_rshift_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
468 HRESULT
assign_rrshift_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
469 HRESULT
assign_add_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
470 HRESULT
assign_sub_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
471 HRESULT
assign_mul_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
472 HRESULT
assign_div_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
473 HRESULT
assign_mod_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
474 HRESULT
assign_and_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
475 HRESULT
assign_or_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
476 HRESULT
assign_xor_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);