Searched refs:new_function_decl (Results 1 – 1 of 1) sorted by relevance
/reactos/dll/win32/vbscript/ |
H A D | parser.y | 64 static function_decl_t *new_function_decl(parser_ctx_t*,const WCHAR*,function_type_t,unsigned,arg_d… 427 … { $$ = new_function_decl(ctx, $4, FUNC_PROPGET, $1, $5, $7); CHECK_ERROR; } 429 … { $$ = new_function_decl(ctx, $4, FUNC_PROPLET, $1, $6, $9); CHECK_ERROR; } 431 … { $$ = new_function_decl(ctx, $4, FUNC_PROPSET, $1, $6, $9); CHECK_ERROR; } 435 … { $$ = new_function_decl(ctx, $3, FUNC_SUB, $1, $4, $6); CHECK_ERROR; } 437 … { $$ = new_function_decl(ctx, $3, FUNC_FUNCTION, $1, $4, $6); CHECK_ERROR; } 910 static function_decl_t *new_function_decl(parser_ctx_t *ctx, const WCHAR *name, function_type_t typ… in new_function_decl() function
|