2 * Copyright 2011 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
24 #include "wine/debug.h"
26 WINE_DEFAULT_DEBUG_CHANNEL
(vbscript
);
28 static int parser_error
(unsigned*,parser_ctx_t
*,const char*);
30 static void handle_isexpression_script
(parser_ctx_t
*ctx
, expression_t
*expr
);
32 static void source_add_statement
(parser_ctx_t
*,statement_t
*);
33 static void source_add_class
(parser_ctx_t
*,class_decl_t
*);
35 static void *new_expression
(parser_ctx_t
*,expression_type_t
,size_t);
36 static expression_t
*new_bool_expression
(parser_ctx_t
*,VARIANT_BOOL
);
37 static expression_t
*new_date_expression
(parser_ctx_t
*,DATE
);
38 static expression_t
*new_string_expression
(parser_ctx_t
*,const WCHAR
*);
39 static expression_t
*new_long_expression
(parser_ctx_t
*,expression_type_t
,LONG
);
40 static expression_t
*new_double_expression
(parser_ctx_t
*,double);
41 static expression_t
*new_unary_expression
(parser_ctx_t
*,expression_type_t
,expression_t
*);
42 static expression_t
*new_binary_expression
(parser_ctx_t
*,expression_type_t
,expression_t
*,expression_t
*);
43 static expression_t
*new_new_expression
(parser_ctx_t
*,const WCHAR
*);
45 static member_expression_t
*new_member_expression
(parser_ctx_t
*,expression_t
*,const WCHAR
*);
46 static call_expression_t
*new_call_expression
(parser_ctx_t
*,expression_t
*,expression_t
*);
47 static call_expression_t
*make_call_expression
(parser_ctx_t
*,expression_t
*,expression_t
*);
49 static void *new_statement
(parser_ctx_t
*,statement_type_t
,size_t,unsigned);
50 static statement_t
*new_call_statement
(parser_ctx_t
*,unsigned,expression_t
*);
51 static statement_t
*new_assign_statement
(parser_ctx_t
*,unsigned,expression_t
*,expression_t
*);
52 static statement_t
*new_set_statement
(parser_ctx_t
*,unsigned,expression_t
*,expression_t
*);
53 static statement_t
*new_dim_statement
(parser_ctx_t
*,unsigned,dim_decl_t
*);
54 static statement_t
*new_redim_statement
(parser_ctx_t
*,unsigned,const WCHAR
*,BOOL
,expression_t
*);
55 static statement_t
*new_while_statement
(parser_ctx_t
*,unsigned,statement_type_t
,expression_t
*,statement_t
*);
56 static statement_t
*new_forto_statement
(parser_ctx_t
*,unsigned,const WCHAR
*,expression_t
*,expression_t
*,expression_t
*,statement_t
*);
57 static statement_t
*new_foreach_statement
(parser_ctx_t
*,unsigned,const WCHAR
*,expression_t
*,statement_t
*);
58 static statement_t
*new_if_statement
(parser_ctx_t
*,unsigned,expression_t
*,statement_t
*,elseif_decl_t
*,statement_t
*);
59 static statement_t
*new_function_statement
(parser_ctx_t
*,unsigned,function_decl_t
*);
60 static statement_t
*new_onerror_statement
(parser_ctx_t
*,unsigned,BOOL
);
61 static statement_t
*new_const_statement
(parser_ctx_t
*,unsigned,const_decl_t
*);
62 static statement_t
*new_select_statement
(parser_ctx_t
*,unsigned,expression_t
*,case_clausule_t
*);
63 static statement_t
*new_with_statement
(parser_ctx_t
*,unsigned,expression_t
*,statement_t
*);
65 static dim_decl_t
*new_dim_decl
(parser_ctx_t
*,const WCHAR
*,BOOL
,dim_list_t
*);
66 static dim_list_t
*new_dim
(parser_ctx_t
*,unsigned,dim_list_t
*);
67 static elseif_decl_t
*new_elseif_decl
(parser_ctx_t
*,unsigned,expression_t
*,statement_t
*);
68 static function_decl_t
*new_function_decl
(parser_ctx_t
*,const WCHAR
*,function_type_t
,unsigned,arg_decl_t
*,statement_t
*);
69 static arg_decl_t
*new_argument_decl
(parser_ctx_t
*,const WCHAR
*,BOOL
);
70 static const_decl_t
*new_const_decl
(parser_ctx_t
*,const WCHAR
*,expression_t
*);
71 static case_clausule_t
*new_case_clausule
(parser_ctx_t
*,expression_t
*,statement_t
*,case_clausule_t
*);
73 static class_decl_t
*new_class_decl
(parser_ctx_t
*);
74 static class_decl_t
*add_class_function
(parser_ctx_t
*,class_decl_t
*,function_decl_t
*);
75 static class_decl_t
*add_dim_prop
(parser_ctx_t
*,class_decl_t
*,dim_decl_t
*,unsigned);
77 static statement_t
*link_statements
(statement_t
*,statement_t
*);
79 #define STORAGE_IS_PRIVATE 1
80 #define STORAGE_IS_DEFAULT 2
82 #define CHECK_ERROR if(((parser_ctx_t*)ctx)->hres != S_OK) YYABORT
84 #define PARSER_LTYPE unsigned
85 #define YYLLOC_DEFAULT(Cur, Rhs, N) Cur = YYRHSLOC((Rhs), (N) ? 1 : 0)
89 %lex
-param
{ parser_ctx_t
*ctx
}
90 %parse
-param
{ parser_ctx_t
*ctx
}
91 %define api.prefix
{parser_
}
97 statement_t
*statement
;
98 expression_t
*expression
;
99 member_expression_t
*member
;
100 elseif_decl_t
*elseif
;
101 dim_decl_t
*dim_decl
;
102 dim_list_t
*dim_list
;
103 function_decl_t
*func_decl
;
104 arg_decl_t
*arg_decl
;
105 class_decl_t
*class_decl
;
106 const_decl_t
*const_decl
;
107 case_clausule_t
*case_clausule
;
115 %token tEXPRESSION tNL tEMPTYBRACKETS tEXPRLBRACKET
116 %token tLTEQ tGTEQ tNEQ
117 %token tSTOP tME tREM tDOT
118 %token
<string> tTRUE tFALSE
119 %token
<string> tNOT tAND tOR tXOR tEQV tIMP
120 %token
<string> tIS tMOD
121 %token
<string> tCALL tSUB tFUNCTION tGET tLET tCONST
122 %token
<string> tDIM tREDIM tPRESERVE
123 %token
<string> tIF tELSE tELSEIF tEND tTHEN tEXIT
124 %token
<string> tWHILE tWEND tDO tLOOP tUNTIL tFOR tTO tEACH tIN
125 %token
<string> tSELECT tCASE tWITH
126 %token
<string> tBYREF tBYVAL
127 %token
<string> tOPTION
128 %token
<string> tNOTHING tEMPTY tNULL
129 %token
<string> tCLASS tSET tNEW tPUBLIC tPRIVATE
130 %token
<string> tNEXT tON tRESUME tGOTO
131 %token
<string> tIdentifier tString
132 %token
<string> tDEFAULT tERROR tEXPLICIT tPROPERTY tSTEP
133 %token
<integer
> tInt
137 %type
<statement
> Statement SimpleStatement StatementNl StatementsNl StatementsNl_opt BodyStatements IfStatement Else_opt
138 %type
<statement
> GlobalDimDeclaration
139 %type
<expression
> Expression LiteralExpression PrimaryExpression EqualityExpression CallExpression ExpressionNl_opt
140 %type
<expression
> ConcatExpression AdditiveExpression ModExpression IntdivExpression MultiplicativeExpression ExpExpression
141 %type
<expression
> NotExpression UnaryExpression AndExpression OrExpression XorExpression EqvExpression SignExpression
142 %type
<expression
> ConstExpression NumericLiteralExpression
143 %type
<member
> MemberExpression
144 %type
<expression
> Arguments ArgumentList ArgumentList_opt Step_opt ExpressionList
145 %type
<boolean
> DoType Preserve_opt
146 %type
<arg_decl
> ArgumentsDecl_opt ArgumentDeclList ArgumentDecl
147 %type
<func_decl
> FunctionDecl PropertyDecl
148 %type
<elseif
> ElseIfs_opt ElseIfs ElseIf
149 %type
<class_decl
> ClassDeclaration ClassBody
150 %type
<uint
> Storage Storage_opt IntegerValue
151 %type
<dim_decl
> DimDeclList DimDecl
152 %type
<dim_list
> DimList
153 %type
<const_decl
> ConstDecl ConstDeclList
154 %type
<string> Identifier
155 %type
<case_clausule
> CaseClausules
160 : OptionExplicit_opt SourceElements
161 | tEXPRESSION ExpressionNl_opt
{ handle_isexpression_script
(ctx
, $2); }
165 | tOPTION tEXPLICIT StSep
{ ctx
->option_explicit
= TRUE
; }
169 | SourceElements GlobalDimDeclaration StSep
170 { source_add_statement
(ctx
, $2); }
171 | SourceElements StatementNl
{ source_add_statement
(ctx
, $2); }
172 | SourceElements ClassDeclaration
{ source_add_class
(ctx
, $2); }
175 : tPRIVATE DimDeclList
{ $$
= new_dim_statement
(ctx
, @$
, $2); CHECK_ERROR
; }
176 | tPUBLIC DimDeclList
{ $$
= new_dim_statement
(ctx
, @$
, $2); CHECK_ERROR
; }
179 : /* empty */ { $$
= NULL
; }
180 | Expression tNL
{ $$
= $1; }
183 : /* empty */ { $$
= NULL
; }
184 | Statement
{ $$
= $1; }
185 | StatementNl BodyStatements
{ $$
= link_statements
($1, $2); }
188 : /* empty */ { $$
= NULL
; }
189 | StatementsNl
{ $$
= $1; }
192 : SimpleStatement StSep
{ $$
= $1; }
193 | SimpleStatement StSep StatementsNl
{ $$
= link_statements
($1, $3); }
196 : Statement tNL
{ $$
= $1; }
200 |
':' Statement
{ $$
= $2; }
201 | SimpleStatement
{ $$
= $1; }
202 | SimpleStatement
':' Statement
{ $1->next
= $3; $$
= $1; }
203 | SimpleStatement
':' { $$
= $1; }
206 : CallExpression ArgumentList_opt
{ call_expression_t
*call_expr
= make_call_expression
(ctx
, $1, $2); CHECK_ERROR
;
207 $$
= new_call_statement
(ctx
, @$
, &call_expr
->expr
); CHECK_ERROR
; };
208 | tCALL UnaryExpression
{ $$
= new_call_statement
(ctx
, @$
, $2); CHECK_ERROR
; }
209 | CallExpression
'=' Expression
210 { $$
= new_assign_statement
(ctx
, @$
, $1, $3); CHECK_ERROR
; }
211 | tDIM DimDeclList
{ $$
= new_dim_statement
(ctx
, @$
, $2); CHECK_ERROR
; }
212 | tREDIM Preserve_opt tIdentifier
'(' ArgumentList
')'
213 { $$
= new_redim_statement
(ctx
, @$
, $3, $2, $5); CHECK_ERROR
; }
214 | IfStatement
{ $$
= $1; }
215 | tWHILE Expression StSep StatementsNl_opt tWEND
216 { $$
= new_while_statement
(ctx
, @$
, STAT_WHILE
, $2, $4); CHECK_ERROR
; }
217 | tDO DoType Expression StSep StatementsNl_opt tLOOP
218 { $$
= new_while_statement
(ctx
, @$
, $2 ? STAT_WHILELOOP
: STAT_UNTIL
, $3, $5);
220 | tDO StSep StatementsNl_opt tLOOP DoType Expression
221 { $$
= new_while_statement
(ctx
, @
4, $5 ? STAT_DOWHILE
: STAT_DOUNTIL
, $6, $3);
223 | tDO StSep StatementsNl_opt tLOOP
{ $$
= new_while_statement
(ctx
, @$
, STAT_DOWHILE
, NULL
, $3); CHECK_ERROR
; }
224 | FunctionDecl
{ $$
= new_function_statement
(ctx
, @$
, $1); CHECK_ERROR
; }
225 | tEXIT tDO
{ $$
= new_statement
(ctx
, STAT_EXITDO
, 0, @$
); CHECK_ERROR
; }
226 | tEXIT tFOR
{ $$
= new_statement
(ctx
, STAT_EXITFOR
, 0, @$
); CHECK_ERROR
; }
227 | tEXIT tFUNCTION
{ $$
= new_statement
(ctx
, STAT_EXITFUNC
, 0, @$
); CHECK_ERROR
; }
228 | tEXIT tPROPERTY
{ $$
= new_statement
(ctx
, STAT_EXITPROP
, 0, @$
); CHECK_ERROR
; }
229 | tEXIT tSUB
{ $$
= new_statement
(ctx
, STAT_EXITSUB
, 0, @$
); CHECK_ERROR
; }
230 | tSET CallExpression
'=' Expression
{ $$
= new_set_statement
(ctx
, @$
, $2, $4); CHECK_ERROR
; }
231 | tSTOP
{ $$
= new_statement
(ctx
, STAT_STOP
, 0, @$
); CHECK_ERROR
; }
232 | tON tERROR tRESUME tNEXT
{ $$
= new_onerror_statement
(ctx
, @$
, TRUE
); CHECK_ERROR
; }
233 | tON tERROR tGOTO
'0' { $$
= new_onerror_statement
(ctx
, @$
, FALSE
); CHECK_ERROR
; }
234 | tCONST ConstDeclList
{ $$
= new_const_statement
(ctx
, @$
, $2); CHECK_ERROR
; }
235 | tFOR Identifier
'=' Expression tTO Expression Step_opt StSep StatementsNl_opt tNEXT
236 { $$
= new_forto_statement
(ctx
, @$
, $2, $4, $6, $7, $9); CHECK_ERROR
; }
237 | tFOR tEACH Identifier tIN Expression StSep StatementsNl_opt tNEXT
238 { $$
= new_foreach_statement
(ctx
, @$
, $3, $5, $7); }
239 | tSELECT tCASE Expression StSep CaseClausules tEND tSELECT
240 { $$
= new_select_statement
(ctx
, @$
, $3, $5); }
241 | tWITH Expression StSep StatementsNl_opt tEND tWITH
242 { $$
= new_with_statement
(ctx
, @$
, $2, $4); }
245 : Identifier
{ $$
= new_member_expression
(ctx
, NULL
, $1); CHECK_ERROR
; }
246 | CallExpression
'.' tIdentifier
{ $$
= new_member_expression
(ctx
, $1, $3); CHECK_ERROR
; }
247 | tDOT tIdentifier
{ expression_t
*dot_expr
= new_expression
(ctx
, EXPR_DOT
, sizeof
(*dot_expr
)); CHECK_ERROR
;
248 $$
= new_member_expression
(ctx
, dot_expr
, $2); CHECK_ERROR
; }
251 : /* empty */ { $$
= FALSE
; }
252 | tPRESERVE
{ $$
= TRUE
; }
255 : DimDecl
{ $$
= $1; }
256 | DimDecl
',' DimDeclList
{ $1->next
= $3; $$
= $1; }
259 : Identifier
{ $$
= new_dim_decl
(ctx
, $1, FALSE
, NULL
); CHECK_ERROR
; }
260 | Identifier
'(' DimList
')' { $$
= new_dim_decl
(ctx
, $1, TRUE
, $3); CHECK_ERROR
; }
261 | Identifier tEMPTYBRACKETS
{ $$
= new_dim_decl
(ctx
, $1, TRUE
, NULL
); CHECK_ERROR
; }
264 : IntegerValue
{ $$
= new_dim
(ctx
, $1, NULL
); }
265 | IntegerValue
',' DimList
{ $$
= new_dim
(ctx
, $1, $3); }
268 : ConstDecl
{ $$
= $1; }
269 | ConstDecl
',' ConstDeclList
{ $1->next
= $3; $$
= $1; }
272 : Identifier
'=' ConstExpression
{ $$
= new_const_decl
(ctx
, $1, $3); CHECK_ERROR
; }
275 : LiteralExpression
{ $$
= $1; }
276 |
'-' NumericLiteralExpression
{ $$
= new_unary_expression
(ctx
, EXPR_NEG
, $2); CHECK_ERROR
; }
279 : tWHILE
{ $$
= TRUE
; }
280 | tUNTIL
{ $$
= FALSE
; }
283 : /* empty */ { $$
= NULL
;}
284 | tSTEP Expression
{ $$
= $2; }
287 : tIF Expression tTHEN tNL StatementsNl_opt ElseIfs_opt Else_opt tEND tIF
288 { $$
= new_if_statement
(ctx
, @$
, $2, $5, $6, $7); CHECK_ERROR
; }
289 | tIF Expression tTHEN Statement EndIf_opt
{ $$
= new_if_statement
(ctx
, @$
, $2, $4, NULL
, NULL
); CHECK_ERROR
; }
290 | tIF Expression tTHEN Statement tELSE Statement EndIf_opt
291 { $$
= new_if_statement
(ctx
, @$
, $2, $4, NULL
, $6); CHECK_ERROR
; }
298 : /* empty */ { $$
= NULL
; }
299 | ElseIfs
{ $$
= $1; }
302 : ElseIf
{ $$
= $1; }
303 | ElseIf ElseIfs
{ $1->next
= $2; $$
= $1; }
306 : tELSEIF Expression tTHEN tNL StatementsNl_opt
307 { $$
= new_elseif_decl
(ctx
, @$
, $2, $5); }
310 : /* empty */ { $$
= NULL
; }
311 | tELSE tNL StatementsNl_opt
{ $$
= $3; }
314 : /* empty */ { $$
= NULL
; }
315 | tCASE tELSE StSep StatementsNl_opt
{ $$
= new_case_clausule
(ctx
, NULL
, $4, NULL
); }
316 | tCASE ExpressionList StSep StatementsNl_opt CaseClausules
317 { $$
= new_case_clausule
(ctx
, $2, $4, $5); }
320 : tEMPTYBRACKETS
{ $$
= NULL
; }
321 |
'(' ArgumentList
')' { $$
= $2; }
324 : /* empty */ { $$
= NULL
; }
325 | ArgumentList
{ $$
= $1; }
328 : Expression
{ $$
= $1; }
329 | Expression
',' ArgumentList
{ $1->next
= $3; $$
= $1; }
330 |
',' ArgumentList
{ $$
= new_expression
(ctx
, EXPR_NOARG
, 0); CHECK_ERROR
; $$
->next
= $2; }
337 : Expression
{ $$
= $1; }
338 | Expression
',' ExpressionList
{ $1->next
= $3; $$
= $1; }
341 : EqvExpression
{ $$
= $1; }
342 | Expression tIMP EqvExpression
{ $$
= new_binary_expression
(ctx
, EXPR_IMP
, $1, $3); CHECK_ERROR
; }
345 : XorExpression
{ $$
= $1; }
346 | EqvExpression tEQV XorExpression
{ $$
= new_binary_expression
(ctx
, EXPR_EQV
, $1, $3); CHECK_ERROR
; }
349 : OrExpression
{ $$
= $1; }
350 | XorExpression tXOR OrExpression
{ $$
= new_binary_expression
(ctx
, EXPR_XOR
, $1, $3); CHECK_ERROR
; }
353 : AndExpression
{ $$
= $1; }
354 | OrExpression tOR AndExpression
{ $$
= new_binary_expression
(ctx
, EXPR_OR
, $1, $3); CHECK_ERROR
; }
357 : NotExpression
{ $$
= $1; }
358 | AndExpression tAND NotExpression
{ $$
= new_binary_expression
(ctx
, EXPR_AND
, $1, $3); CHECK_ERROR
; }
361 : EqualityExpression
{ $$
= $1; }
362 | tNOT NotExpression
{ $$
= new_unary_expression
(ctx
, EXPR_NOT
, $2); CHECK_ERROR
; }
365 : ConcatExpression
{ $$
= $1; }
366 | EqualityExpression
'=' ConcatExpression
{ $$
= new_binary_expression
(ctx
, EXPR_EQUAL
, $1, $3); CHECK_ERROR
; }
367 | EqualityExpression tNEQ ConcatExpression
{ $$
= new_binary_expression
(ctx
, EXPR_NEQUAL
, $1, $3); CHECK_ERROR
; }
368 | EqualityExpression
'>' ConcatExpression
{ $$
= new_binary_expression
(ctx
, EXPR_GT
, $1, $3); CHECK_ERROR
; }
369 | EqualityExpression
'<' ConcatExpression
{ $$
= new_binary_expression
(ctx
, EXPR_LT
, $1, $3); CHECK_ERROR
; }
370 | EqualityExpression tGTEQ ConcatExpression
{ $$
= new_binary_expression
(ctx
, EXPR_GTEQ
, $1, $3); CHECK_ERROR
; }
371 | EqualityExpression tLTEQ ConcatExpression
{ $$
= new_binary_expression
(ctx
, EXPR_LTEQ
, $1, $3); CHECK_ERROR
; }
372 | EqualityExpression tIS ConcatExpression
{ $$
= new_binary_expression
(ctx
, EXPR_IS
, $1, $3); CHECK_ERROR
; }
375 : AdditiveExpression
{ $$
= $1; }
376 | ConcatExpression
'&' AdditiveExpression
{ $$
= new_binary_expression
(ctx
, EXPR_CONCAT
, $1, $3); CHECK_ERROR
; }
379 : ModExpression
{ $$
= $1; }
380 | AdditiveExpression
'+' ModExpression
{ $$
= new_binary_expression
(ctx
, EXPR_ADD
, $1, $3); CHECK_ERROR
; }
381 | AdditiveExpression
'-' ModExpression
{ $$
= new_binary_expression
(ctx
, EXPR_SUB
, $1, $3); CHECK_ERROR
; }
384 : IntdivExpression
{ $$
= $1; }
385 | ModExpression tMOD IntdivExpression
{ $$
= new_binary_expression
(ctx
, EXPR_MOD
, $1, $3); CHECK_ERROR
; }
388 : MultiplicativeExpression
{ $$
= $1; }
389 | IntdivExpression
'\\' MultiplicativeExpression
390 { $$
= new_binary_expression
(ctx
, EXPR_IDIV
, $1, $3); CHECK_ERROR
; }
392 MultiplicativeExpression
393 : ExpExpression
{ $$
= $1; }
394 | MultiplicativeExpression
'*' ExpExpression
395 { $$
= new_binary_expression
(ctx
, EXPR_MUL
, $1, $3); CHECK_ERROR
; }
396 | MultiplicativeExpression
'/' ExpExpression
397 { $$
= new_binary_expression
(ctx
, EXPR_DIV
, $1, $3); CHECK_ERROR
; }
400 : SignExpression
{ $$
= $1; }
401 | ExpExpression
'^' SignExpression
{ $$
= new_binary_expression
(ctx
, EXPR_EXP
, $1, $3); CHECK_ERROR
; }
404 : UnaryExpression
{ $$
= $1; }
405 |
'-' SignExpression
{ $$
= new_unary_expression
(ctx
, EXPR_NEG
, $2); CHECK_ERROR
; }
406 |
'+' SignExpression
{ $$
= $2; }
409 : LiteralExpression
{ $$
= $1; }
410 | CallExpression
{ $$
= $1; }
411 | tNEW Identifier
{ $$
= new_new_expression
(ctx
, $2); CHECK_ERROR
; }
414 : PrimaryExpression
{ $$
= $1; }
415 | MemberExpression
{ $$
= &$1->expr
; }
416 | CallExpression Arguments
{ call_expression_t
*expr
= new_call_expression
(ctx
, $1, $2); CHECK_ERROR
;
420 : tTRUE
{ $$
= new_bool_expression
(ctx
, VARIANT_TRUE
); CHECK_ERROR
; }
421 | tFALSE
{ $$
= new_bool_expression
(ctx
, VARIANT_FALSE
); CHECK_ERROR
; }
422 | tString
{ $$
= new_string_expression
(ctx
, $1); CHECK_ERROR
; }
423 | tDate
{ $$
= new_date_expression
(ctx
, $1); CHECK_ERROR
; }
424 | NumericLiteralExpression
{ $$
= $1; }
425 | tEMPTY
{ $$
= new_expression
(ctx
, EXPR_EMPTY
, 0); CHECK_ERROR
; }
426 | tNULL
{ $$
= new_expression
(ctx
, EXPR_NULL
, 0); CHECK_ERROR
; }
427 | tNOTHING
{ $$
= new_expression
(ctx
, EXPR_NOTHING
, 0); CHECK_ERROR
; }
429 NumericLiteralExpression
430 : '0' { $$
= new_long_expression
(ctx
, EXPR_INT
, 0); CHECK_ERROR
; }
431 | tInt
{ $$
= new_long_expression
(ctx
, EXPR_INT
, $1); CHECK_ERROR
; }
432 | tDouble
{ $$
= new_double_expression
(ctx
, $1); CHECK_ERROR
; }
439 : tEXPRLBRACKET Expression
')' { $$
= new_unary_expression
(ctx
, EXPR_BRACKETS
, $2); }
440 | tME
{ $$
= new_expression
(ctx
, EXPR_ME
, 0); CHECK_ERROR
; }
443 : tCLASS Identifier StSep ClassBody tEND tCLASS StSep
{ $4->name
= $2; $$
= $4; }
446 : /* empty */ { $$
= new_class_decl
(ctx
); }
447 | FunctionDecl
{ $$
= add_class_function
(ctx
, new_class_decl
(ctx
), $1); CHECK_ERROR
; }
448 | FunctionDecl StSep ClassBody
{ $$
= add_class_function
(ctx
, $3, $1); CHECK_ERROR
; }
449 /* FIXME: We should use DimDecl here to support arrays, but that conflicts with PropertyDecl. */
450 | Storage tIdentifier
{ dim_decl_t
*dim_decl
= new_dim_decl
(ctx
, $2, FALSE
, NULL
); CHECK_ERROR
;
451 $$
= add_dim_prop
(ctx
, new_class_decl
(ctx
), dim_decl
, $1); CHECK_ERROR
; }
452 | Storage tIdentifier StSep ClassBody
{ dim_decl_t
*dim_decl
= new_dim_decl
(ctx
, $2, FALSE
, NULL
); CHECK_ERROR
;
453 $$
= add_dim_prop
(ctx
, $4, dim_decl
, $1); CHECK_ERROR
; }
454 | tDIM DimDecl
{ $$
= add_dim_prop
(ctx
, new_class_decl
(ctx
), $2, 0); CHECK_ERROR
; }
455 | tDIM DimDecl StSep ClassBody
{ $$
= add_dim_prop
(ctx
, $4, $2, 0); CHECK_ERROR
; }
456 | PropertyDecl
{ $$
= add_class_function
(ctx
, new_class_decl
(ctx
), $1); CHECK_ERROR
; }
457 | PropertyDecl StSep ClassBody
{ $$
= add_class_function
(ctx
, $3, $1); CHECK_ERROR
; }
460 : Storage_opt tPROPERTY tGET Identifier ArgumentsDecl_opt StSep BodyStatements tEND tPROPERTY
461 { $$
= new_function_decl
(ctx
, $4, FUNC_PROPGET
, $1, $5, $7); CHECK_ERROR
; }
462 | Storage_opt tPROPERTY tLET Identifier
'(' ArgumentDeclList
')' StSep BodyStatements tEND tPROPERTY
463 { $$
= new_function_decl
(ctx
, $4, FUNC_PROPLET
, $1, $6, $9); CHECK_ERROR
; }
464 | Storage_opt tPROPERTY tSET Identifier
'(' ArgumentDeclList
')' StSep BodyStatements tEND tPROPERTY
465 { $$
= new_function_decl
(ctx
, $4, FUNC_PROPSET
, $1, $6, $9); CHECK_ERROR
; }
468 : Storage_opt tSUB Identifier ArgumentsDecl_opt StSep BodyStatements tEND tSUB
469 { $$
= new_function_decl
(ctx
, $3, FUNC_SUB
, $1, $4, $6); CHECK_ERROR
; }
470 | Storage_opt tFUNCTION Identifier ArgumentsDecl_opt StSep BodyStatements tEND tFUNCTION
471 { $$
= new_function_decl
(ctx
, $3, FUNC_FUNCTION
, $1, $4, $6); CHECK_ERROR
; }
474 : /* empty*/ { $$
= 0; }
475 | Storage
{ $$
= $1; }
478 : tPUBLIC tDEFAULT
{ $$
= STORAGE_IS_DEFAULT
; }
479 | tPUBLIC
{ $$
= 0; }
480 | tPRIVATE
{ $$
= STORAGE_IS_PRIVATE
; }
483 : EmptyBrackets_opt
{ $$
= NULL
; }
484 |
'(' ArgumentDeclList
')' { $$
= $2; }
487 : ArgumentDecl
{ $$
= $1; }
488 | ArgumentDecl
',' ArgumentDeclList
{ $1->next
= $3; $$
= $1; }
491 : Identifier EmptyBrackets_opt
{ $$
= new_argument_decl
(ctx
, $1, TRUE
); }
492 | tBYREF Identifier EmptyBrackets_opt
{ $$
= new_argument_decl
(ctx
, $2, TRUE
); }
493 | tBYVAL Identifier EmptyBrackets_opt
{ $$
= new_argument_decl
(ctx
, $2, FALSE
); }
495 /* these keywords may also be an identifier, depending on context */
497 : tIdentifier
{ $$
= $1; }
498 | tDEFAULT
{ ctx
->last_token
= tIdentifier
; $$
= $1; }
499 | tERROR
{ ctx
->last_token
= tIdentifier
; $$
= $1; }
500 | tEXPLICIT
{ ctx
->last_token
= tIdentifier
; $$
= $1; }
501 | tPROPERTY
{ ctx
->last_token
= tIdentifier
; $$
= $1; }
502 | tSTEP
{ ctx
->last_token
= tIdentifier
; $$
= $1; }
504 /* Most statements accept both new line and ':' as separators */
513 static int parser_error
(unsigned *loc
, parser_ctx_t
*ctx
, const char *str
)
515 if
(ctx
->error_loc
== -1)
516 ctx
->error_loc
= *loc
;
517 if
(ctx
->hres
== S_OK
) {
518 FIXME
("%s: %s\n", debugstr_w
(ctx
->code
+ *loc
), debugstr_a
(str
));
521 WARN
("%s: %08lx\n", debugstr_w
(ctx
->code
+ *loc
), ctx
->hres
);
526 static void source_add_statement
(parser_ctx_t
*ctx
, statement_t
*stat
)
531 /* concatenate both linked lists */
533 ctx
->stats_tail
->next
= stat
;
534 ctx
->stats_tail
= stat
;
536 ctx
->stats
= ctx
->stats_tail
= stat
;
539 while
(ctx
->stats_tail
->next
) {
540 ctx
->stats_tail
=ctx
->stats_tail
->next
;
544 static void source_add_class
(parser_ctx_t
*ctx
, class_decl_t
*class_decl
)
546 class_decl
->next
= ctx
->class_decls
;
547 ctx
->class_decls
= class_decl
;
550 static void handle_isexpression_script
(parser_ctx_t
*ctx
, expression_t
*expr
)
552 retval_statement_t
*stat
;
557 stat
= new_statement
(ctx
, STAT_RETVAL
, sizeof
(*stat
), 0);
562 ctx
->stats
= &stat
->stat
;
565 static void *new_expression
(parser_ctx_t
*ctx
, expression_type_t type
, size_t size
)
569 expr
= parser_alloc
(ctx
, size ? size
: sizeof
(*expr
));
578 static expression_t
*new_bool_expression
(parser_ctx_t
*ctx
, VARIANT_BOOL value
)
580 bool_expression_t
*expr
;
582 expr
= new_expression
(ctx
, EXPR_BOOL
, sizeof
(*expr
));
590 static expression_t
*new_string_expression
(parser_ctx_t
*ctx
, const WCHAR
*value
)
592 string_expression_t
*expr
;
594 expr
= new_expression
(ctx
, EXPR_STRING
, sizeof
(*expr
));
602 static expression_t
*new_date_expression
(parser_ctx_t
*ctx
, DATE value
)
604 date_expression_t
*expr
;
606 expr
= new_expression
(ctx
, EXPR_DATE
, sizeof
(*expr
));
614 static expression_t
*new_long_expression
(parser_ctx_t
*ctx
, expression_type_t type
, LONG value
)
616 int_expression_t
*expr
;
618 expr
= new_expression
(ctx
, type
, sizeof
(*expr
));
626 static expression_t
*new_double_expression
(parser_ctx_t
*ctx
, double value
)
628 double_expression_t
*expr
;
630 expr
= new_expression
(ctx
, EXPR_DOUBLE
, sizeof
(*expr
));
638 static expression_t
*new_unary_expression
(parser_ctx_t
*ctx
, expression_type_t type
, expression_t
*subexpr
)
640 unary_expression_t
*expr
;
642 expr
= new_expression
(ctx
, type
, sizeof
(*expr
));
646 expr
->subexpr
= subexpr
;
650 static expression_t
*new_binary_expression
(parser_ctx_t
*ctx
, expression_type_t type
, expression_t
*left
, expression_t
*right
)
652 binary_expression_t
*expr
;
654 expr
= new_expression
(ctx
, type
, sizeof
(*expr
));
663 static member_expression_t
*new_member_expression
(parser_ctx_t
*ctx
, expression_t
*obj_expr
, const WCHAR
*identifier
)
665 member_expression_t
*expr
;
667 expr
= new_expression
(ctx
, EXPR_MEMBER
, sizeof
(*expr
));
671 expr
->obj_expr
= obj_expr
;
672 expr
->identifier
= identifier
;
676 static call_expression_t
*new_call_expression
(parser_ctx_t
*ctx
, expression_t
*expr
, expression_t
*arguments
)
678 call_expression_t
*call_expr
;
680 call_expr
= new_expression
(ctx
, EXPR_CALL
, sizeof
(*call_expr
));
684 call_expr
->call_expr
= expr
;
685 call_expr
->args
= arguments
;
689 static call_expression_t
*make_call_expression
(parser_ctx_t
*ctx
, expression_t
*callee_expr
, expression_t
*arguments
)
691 call_expression_t
*call_expr
;
693 if
(callee_expr
->type
== EXPR_MEMBER
)
694 return new_call_expression
(ctx
, callee_expr
, arguments
);
695 if
(callee_expr
->type
!= EXPR_CALL
) {
696 FIXME
("Unhandled for expr type %u\n", callee_expr
->type
);
700 call_expr
= (call_expression_t
*)callee_expr
;
701 if
(!call_expr
->args
) {
702 call_expr
->args
= arguments
;
706 if
(call_expr
->args
->next
) {
707 FIXME
("Invalid syntax: invalid use of parentheses for arguments\n");
712 call_expr
->args
= new_unary_expression
(ctx
, EXPR_BRACKETS
, call_expr
->args
);
718 if
(arguments
->type
!= EXPR_NOARG
) {
719 FIXME
("Invalid syntax: missing comma\n");
724 call_expr
->args
->next
= arguments
->next
;
728 static expression_t
*new_new_expression
(parser_ctx_t
*ctx
, const WCHAR
*identifier
)
730 string_expression_t
*expr
;
732 expr
= new_expression
(ctx
, EXPR_NEW
, sizeof
(*expr
));
736 expr
->value
= identifier
;
740 static void *new_statement
(parser_ctx_t
*ctx
, statement_type_t type
, size_t size
, unsigned loc
)
744 stat
= parser_alloc
(ctx
, size ? size
: sizeof
(*stat
));
754 static statement_t
*new_call_statement
(parser_ctx_t
*ctx
, unsigned loc
, expression_t
*expr
)
756 call_expression_t
*call_expr
= NULL
;
757 call_statement_t
*stat
;
759 stat
= new_statement
(ctx
, STAT_CALL
, sizeof
(*stat
), loc
);
765 call_expr
= new_call_expression
(ctx
, expr
, NULL
);
768 call_expr
= (call_expression_t
*)expr
;
771 FIXME
("Unsupported expr type %u\n", expr
->type
);
772 ctx
->hres
= E_NOTIMPL
;
777 stat
->expr
= call_expr
;
781 static statement_t
*new_assign_statement
(parser_ctx_t
*ctx
, unsigned loc
, expression_t
*left
, expression_t
*right
)
783 assign_statement_t
*stat
;
785 stat
= new_statement
(ctx
, STAT_ASSIGN
, sizeof
(*stat
), loc
);
789 stat
->left_expr
= left
;
790 stat
->value_expr
= right
;
795 static statement_t
*new_set_statement
(parser_ctx_t
*ctx
, unsigned loc
, expression_t
*left
, expression_t
*right
)
797 assign_statement_t
*stat
;
799 stat
= new_statement
(ctx
, STAT_SET
, sizeof
(*stat
), loc
);
803 stat
->left_expr
= left
;
804 stat
->value_expr
= right
;
809 static dim_decl_t
*new_dim_decl
(parser_ctx_t
*ctx
, const WCHAR
*name
, BOOL is_array
, dim_list_t
*dims
)
813 decl
= parser_alloc
(ctx
, sizeof
(*decl
));
818 decl
->is_array
= is_array
;
824 static dim_list_t
*new_dim
(parser_ctx_t
*ctx
, unsigned val
, dim_list_t
*next
)
828 ret
= parser_alloc
(ctx
, sizeof
(*ret
));
837 static statement_t
*new_dim_statement
(parser_ctx_t
*ctx
, unsigned loc
, dim_decl_t
*decls
)
839 dim_statement_t
*stat
;
841 stat
= new_statement
(ctx
, STAT_DIM
, sizeof
(*stat
), loc
);
845 stat
->dim_decls
= decls
;
849 static statement_t
*new_redim_statement
(parser_ctx_t
*ctx
, unsigned loc
, const WCHAR
*identifier
, BOOL preserve
, expression_t
*dims
)
851 redim_statement_t
*stat
;
853 stat
= new_statement
(ctx
, STAT_REDIM
, sizeof
(*stat
), loc
);
857 stat
->identifier
= identifier
;
858 stat
->preserve
= preserve
;
863 static elseif_decl_t
*new_elseif_decl
(parser_ctx_t
*ctx
, unsigned loc
, expression_t
*expr
, statement_t
*stat
)
867 decl
= parser_alloc
(ctx
, sizeof
(*decl
));
878 static statement_t
*new_while_statement
(parser_ctx_t
*ctx
, unsigned loc
, statement_type_t type
, expression_t
*expr
, statement_t
*body
)
880 while_statement_t
*stat
;
882 stat
= new_statement
(ctx
, type
, sizeof
(*stat
), loc
);
891 static statement_t
*new_forto_statement
(parser_ctx_t
*ctx
, unsigned loc
, const WCHAR
*identifier
, expression_t
*from_expr
,
892 expression_t
*to_expr
, expression_t
*step_expr
, statement_t
*body
)
894 forto_statement_t
*stat
;
896 stat
= new_statement
(ctx
, STAT_FORTO
, sizeof
(*stat
), loc
);
900 stat
->identifier
= identifier
;
901 stat
->from_expr
= from_expr
;
902 stat
->to_expr
= to_expr
;
903 stat
->step_expr
= step_expr
;
908 static statement_t
*new_foreach_statement
(parser_ctx_t
*ctx
, unsigned loc
, const WCHAR
*identifier
, expression_t
*group_expr
,
911 foreach_statement_t
*stat
;
913 stat
= new_statement
(ctx
, STAT_FOREACH
, sizeof
(*stat
), loc
);
917 stat
->identifier
= identifier
;
918 stat
->group_expr
= group_expr
;
923 static statement_t
*new_if_statement
(parser_ctx_t
*ctx
, unsigned loc
, expression_t
*expr
, statement_t
*if_stat
, elseif_decl_t
*elseif_decl
,
924 statement_t
*else_stat
)
926 if_statement_t
*stat
;
928 stat
= new_statement
(ctx
, STAT_IF
, sizeof
(*stat
), loc
);
933 stat
->if_stat
= if_stat
;
934 stat
->elseifs
= elseif_decl
;
935 stat
->else_stat
= else_stat
;
939 static statement_t
*new_select_statement
(parser_ctx_t
*ctx
, unsigned loc
, expression_t
*expr
, case_clausule_t
*case_clausules
)
941 select_statement_t
*stat
;
943 stat
= new_statement
(ctx
, STAT_SELECT
, sizeof
(*stat
), loc
);
948 stat
->case_clausules
= case_clausules
;
952 static statement_t
*new_with_statement
(parser_ctx_t
*ctx
, unsigned loc
, expression_t
*expr
, statement_t
*body
)
954 with_statement_t
*stat
;
956 stat
= new_statement
(ctx
, STAT_WITH
, sizeof
(*stat
), loc
);
965 static case_clausule_t
*new_case_clausule
(parser_ctx_t
*ctx
, expression_t
*expr
, statement_t
*stat
, case_clausule_t
*next
)
967 case_clausule_t
*ret
;
969 ret
= parser_alloc
(ctx
, sizeof
(*ret
));
979 static statement_t
*new_onerror_statement
(parser_ctx_t
*ctx
, unsigned loc
, BOOL resume_next
)
981 onerror_statement_t
*stat
;
983 stat
= new_statement
(ctx
, STAT_ONERROR
, sizeof
(*stat
), loc
);
987 stat
->resume_next
= resume_next
;
991 static arg_decl_t
*new_argument_decl
(parser_ctx_t
*ctx
, const WCHAR
*name
, BOOL by_ref
)
993 arg_decl_t
*arg_decl
;
995 arg_decl
= parser_alloc
(ctx
, sizeof
(*arg_decl
));
999 arg_decl
->name
= name
;
1000 arg_decl
->by_ref
= by_ref
;
1001 arg_decl
->next
= NULL
;
1005 static function_decl_t
*new_function_decl
(parser_ctx_t
*ctx
, const WCHAR
*name
, function_type_t type
,
1006 unsigned storage_flags
, arg_decl_t
*arg_decl
, statement_t
*body
)
1008 function_decl_t
*decl
;
1009 BOOL is_default
= FALSE
;
1011 if
(storage_flags
& STORAGE_IS_DEFAULT
) {
1012 if
(type
== FUNC_PROPGET || type
== FUNC_FUNCTION || type
== FUNC_SUB
) {
1015 FIXME
("Invalid default property\n");
1021 decl
= parser_alloc
(ctx
, sizeof
(*decl
));
1027 decl
->is_public
= !(storage_flags
& STORAGE_IS_PRIVATE
);
1028 decl
->is_default
= is_default
;
1029 decl
->args
= arg_decl
;
1032 decl
->next_prop_func
= NULL
;
1036 static statement_t
*new_function_statement
(parser_ctx_t
*ctx
, unsigned loc
, function_decl_t
*decl
)
1038 function_statement_t
*stat
;
1040 stat
= new_statement
(ctx
, STAT_FUNC
, sizeof
(*stat
), loc
);
1044 stat
->func_decl
= decl
;
1048 static class_decl_t
*new_class_decl
(parser_ctx_t
*ctx
)
1050 class_decl_t
*class_decl
;
1052 class_decl
= parser_alloc
(ctx
, sizeof
(*class_decl
));
1056 class_decl
->funcs
= NULL
;
1057 class_decl
->props
= NULL
;
1058 class_decl
->next
= NULL
;
1062 static class_decl_t
*add_class_function
(parser_ctx_t
*ctx
, class_decl_t
*class_decl
, function_decl_t
*decl
)
1064 function_decl_t
*iter
;
1066 for
(iter
= class_decl
->funcs
; iter
; iter
= iter
->next
) {
1067 if
(!wcsicmp
(iter
->name
, decl
->name
)) {
1068 if
(decl
->type
== FUNC_SUB || decl
->type
== FUNC_FUNCTION
) {
1069 FIXME
("Redefinition of %s::%s\n", debugstr_w
(class_decl
->name
), debugstr_w
(decl
->name
));
1075 if
(iter
->type
== decl
->type
) {
1076 FIXME
("Redefinition of %s::%s\n", debugstr_w
(class_decl
->name
), debugstr_w
(decl
->name
));
1080 if
(!iter
->next_prop_func
)
1082 iter
= iter
->next_prop_func
;
1085 iter
->next_prop_func
= decl
;
1090 decl
->next
= class_decl
->funcs
;
1091 class_decl
->funcs
= decl
;
1095 static class_decl_t
*add_dim_prop
(parser_ctx_t
*ctx
, class_decl_t
*class_decl
, dim_decl_t
*dim_decl
, unsigned storage_flags
)
1097 if
(storage_flags
& STORAGE_IS_DEFAULT
) {
1098 FIXME
("variant prop van't be default value\n");
1103 dim_decl
->is_public
= !(storage_flags
& STORAGE_IS_PRIVATE
);
1104 dim_decl
->next
= class_decl
->props
;
1105 class_decl
->props
= dim_decl
;
1109 static const_decl_t
*new_const_decl
(parser_ctx_t
*ctx
, const WCHAR
*name
, expression_t
*expr
)
1113 decl
= parser_alloc
(ctx
, sizeof
(*decl
));
1118 decl
->value_expr
= expr
;
1123 static statement_t
*new_const_statement
(parser_ctx_t
*ctx
, unsigned loc
, const_decl_t
*decls
)
1125 const_statement_t
*stat
;
1127 stat
= new_statement
(ctx
, STAT_CONST
, sizeof
(*stat
), loc
);
1131 stat
->decls
= decls
;
1135 static statement_t
*link_statements
(statement_t
*head
, statement_t
*tail
)
1139 for
(iter
= head
; iter
->next
; iter
= iter
->next
);
1145 void *parser_alloc
(parser_ctx_t
*ctx
, size_t size
)
1149 ret
= heap_pool_alloc
(&ctx
->heap
, size
);
1151 ctx
->hres
= E_OUTOFMEMORY
;
1155 HRESULT parse_script
(parser_ctx_t
*ctx
, const WCHAR
*code
, const WCHAR
*delimiter
, DWORD flags
)
1157 ctx
->code
= ctx
->ptr
= code
;
1158 ctx
->end
= ctx
->code
+ lstrlenW
(ctx
->code
);
1160 heap_pool_init
(&ctx
->heap
);
1163 ctx
->error_loc
= -1;
1164 ctx
->last_token
= tNL
;
1166 ctx
->stats
= ctx
->stats_tail
= NULL
;
1167 ctx
->class_decls
= NULL
;
1168 ctx
->option_explicit
= FALSE
;
1169 ctx
->is_html
= delimiter
&& !wcsicmp
(delimiter
, L
"</script>");
1171 if
(flags
& SCRIPTTEXT_ISEXPRESSION
)
1172 ctx
->last_token
= tEXPRESSION
;
1179 void parser_release
(parser_ctx_t
*ctx
)
1181 heap_pool_free
(&ctx
->heap
);