2011-09-06 13:18:40 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2011 Jacek Caban for CodeWeavers
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
2011-09-07 12:08:21 +00:00
|
|
|
typedef enum {
|
2011-09-08 12:56:36 +00:00
|
|
|
EXPR_BOOL,
|
2011-09-09 12:49:26 +00:00
|
|
|
EXPR_EMPTY,
|
2011-09-09 12:48:13 +00:00
|
|
|
EXPR_EQUAL,
|
2011-09-08 12:56:58 +00:00
|
|
|
EXPR_MEMBER,
|
2011-09-09 12:47:32 +00:00
|
|
|
EXPR_NOT,
|
2011-09-09 12:49:36 +00:00
|
|
|
EXPR_NULL,
|
2011-09-08 12:56:58 +00:00
|
|
|
EXPR_STRING
|
2011-09-07 12:08:21 +00:00
|
|
|
} expression_type_t;
|
|
|
|
|
|
|
|
typedef struct _expression_t {
|
|
|
|
expression_type_t type;
|
|
|
|
struct _expression_t *next;
|
|
|
|
} expression_t;
|
|
|
|
|
2011-09-08 12:56:36 +00:00
|
|
|
typedef struct {
|
|
|
|
expression_t expr;
|
|
|
|
VARIANT_BOOL value;
|
|
|
|
} bool_expression_t;
|
|
|
|
|
2011-09-08 12:56:58 +00:00
|
|
|
typedef struct {
|
|
|
|
expression_t expr;
|
|
|
|
const WCHAR *value;
|
|
|
|
} string_expression_t;
|
|
|
|
|
2011-09-09 12:47:32 +00:00
|
|
|
typedef struct {
|
|
|
|
expression_t expr;
|
|
|
|
expression_t *subexpr;
|
|
|
|
} unary_expression_t;
|
|
|
|
|
2011-09-09 12:48:13 +00:00
|
|
|
typedef struct {
|
|
|
|
expression_t expr;
|
|
|
|
expression_t *left;
|
|
|
|
expression_t *right;
|
|
|
|
} binary_expression_t;
|
|
|
|
|
2011-09-07 12:08:21 +00:00
|
|
|
typedef struct {
|
|
|
|
expression_t expr;
|
|
|
|
expression_t *obj_expr;
|
|
|
|
const WCHAR *identifier;
|
|
|
|
expression_t *args;
|
|
|
|
} member_expression_t;
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
STAT_CALL
|
|
|
|
} statement_type_t;
|
|
|
|
|
|
|
|
typedef struct _statement_t {
|
|
|
|
statement_type_t type;
|
|
|
|
struct _statement_t *next;
|
|
|
|
} statement_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
statement_t stat;
|
|
|
|
member_expression_t *expr;
|
|
|
|
} call_statement_t;
|
|
|
|
|
2011-09-06 13:18:40 +00:00
|
|
|
typedef struct {
|
|
|
|
const WCHAR *code;
|
|
|
|
const WCHAR *ptr;
|
|
|
|
const WCHAR *end;
|
|
|
|
|
2011-09-09 12:47:00 +00:00
|
|
|
BOOL option_explicit;
|
2011-09-06 13:18:40 +00:00
|
|
|
BOOL parse_complete;
|
|
|
|
HRESULT hres;
|
2011-09-06 13:18:55 +00:00
|
|
|
|
|
|
|
int last_token;
|
|
|
|
unsigned last_nl;
|
2011-09-07 12:08:21 +00:00
|
|
|
|
|
|
|
statement_t *stats;
|
|
|
|
statement_t *stats_tail;
|
2011-09-06 13:18:40 +00:00
|
|
|
} parser_ctx_t;
|
|
|
|
|
2011-09-06 13:18:55 +00:00
|
|
|
HRESULT parse_script(parser_ctx_t*,const WCHAR*) DECLSPEC_HIDDEN;
|
|
|
|
int parser_lex(void*,parser_ctx_t*) DECLSPEC_HIDDEN;
|
2011-09-07 12:08:07 +00:00
|
|
|
void *parser_alloc(parser_ctx_t*,size_t) DECLSPEC_HIDDEN;
|