Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
74ab0187
Commit
74ab0187
authored
Oct 29, 2019
by
Jacek Caban
Committed by
Alexandre Julliard
Oct 29, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vbscript: Add support for parsing with statement.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
55e9c896
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
38 additions
and
3 deletions
+38
-3
lex.c
dlls/vbscript/lex.c
+10
-1
parse.h
dlls/vbscript/parse.h
+8
-0
parser.y
dlls/vbscript/parser.y
+20
-2
No files found.
dlls/vbscript/lex.c
View file @
74ab0187
...
@@ -88,6 +88,7 @@ static const struct {
...
@@ -88,6 +88,7 @@ static const struct {
{
L"until"
,
tUNTIL
},
{
L"until"
,
tUNTIL
},
{
L"wend"
,
tWEND
},
{
L"wend"
,
tWEND
},
{
L"while"
,
tWHILE
},
{
L"while"
,
tWHILE
},
{
L"with"
,
tWITH
},
{
L"xor"
,
tXOR
}
{
L"xor"
,
tXOR
}
};
};
...
@@ -379,9 +380,17 @@ static int parse_next_token(void *lval, parser_ctx_t *ctx)
...
@@ -379,9 +380,17 @@ static int parse_next_token(void *lval, parser_ctx_t *ctx)
case
'/'
:
case
'/'
:
case
'^'
:
case
'^'
:
case
'\\'
:
case
'\\'
:
case
'.'
:
case
'_'
:
case
'_'
:
return
*
ctx
->
ptr
++
;
return
*
ctx
->
ptr
++
;
case
'.'
:
/*
* We need to distinguish between '.' used as part of a member expression and
* a beginning of a dot expression (a member expression accessing with statement
* expression).
*/
c
=
ctx
->
ptr
>
ctx
->
code
?
ctx
->
ptr
[
-
1
]
:
'\n'
;
ctx
->
ptr
++
;
return
is_identifier_char
(
c
)
||
c
==
')'
?
'.'
:
tDOT
;
case
'-'
:
case
'-'
:
if
(
ctx
->
is_html
&&
ctx
->
ptr
[
1
]
==
'-'
&&
ctx
->
ptr
[
2
]
==
'>'
)
if
(
ctx
->
is_html
&&
ctx
->
ptr
[
1
]
==
'-'
&&
ctx
->
ptr
[
2
]
==
'>'
)
return
comment_line
(
ctx
);
return
comment_line
(
ctx
);
...
...
dlls/vbscript/parse.h
View file @
74ab0187
...
@@ -24,6 +24,7 @@ typedef enum {
...
@@ -24,6 +24,7 @@ typedef enum {
EXPR_CALL
,
EXPR_CALL
,
EXPR_CONCAT
,
EXPR_CONCAT
,
EXPR_DIV
,
EXPR_DIV
,
EXPR_DOT
,
EXPR_DOUBLE
,
EXPR_DOUBLE
,
EXPR_EMPTY
,
EXPR_EMPTY
,
EXPR_EQUAL
,
EXPR_EQUAL
,
...
@@ -125,6 +126,7 @@ typedef enum {
...
@@ -125,6 +126,7 @@ typedef enum {
STAT_UNTIL
,
STAT_UNTIL
,
STAT_WHILE
,
STAT_WHILE
,
STAT_WHILELOOP
,
STAT_WHILELOOP
,
STAT_WITH
,
STAT_RETVAL
STAT_RETVAL
}
statement_type_t
;
}
statement_type_t
;
...
@@ -258,6 +260,12 @@ typedef struct {
...
@@ -258,6 +260,12 @@ typedef struct {
typedef
struct
{
typedef
struct
{
statement_t
stat
;
statement_t
stat
;
expression_t
*
expr
;
expression_t
*
expr
;
statement_t
*
body
;
}
with_statement_t
;
typedef
struct
{
statement_t
stat
;
expression_t
*
expr
;
}
retval_statement_t
;
}
retval_statement_t
;
typedef
struct
{
typedef
struct
{
...
...
dlls/vbscript/parser.y
View file @
74ab0187
...
@@ -59,6 +59,7 @@ static statement_t *new_function_statement(parser_ctx_t*,function_decl_t*);
...
@@ -59,6 +59,7 @@ static statement_t *new_function_statement(parser_ctx_t*,function_decl_t*);
static statement_t *new_onerror_statement(parser_ctx_t*,BOOL);
static statement_t *new_onerror_statement(parser_ctx_t*,BOOL);
static statement_t *new_const_statement(parser_ctx_t*,const_decl_t*);
static statement_t *new_const_statement(parser_ctx_t*,const_decl_t*);
static statement_t *new_select_statement(parser_ctx_t*,expression_t*,case_clausule_t*);
static statement_t *new_select_statement(parser_ctx_t*,expression_t*,case_clausule_t*);
static statement_t *new_with_statement(parser_ctx_t*,expression_t*,statement_t*);
static dim_decl_t *new_dim_decl(parser_ctx_t*,const WCHAR*,BOOL,dim_list_t*);
static dim_decl_t *new_dim_decl(parser_ctx_t*,const WCHAR*,BOOL,dim_list_t*);
static dim_list_t *new_dim(parser_ctx_t*,unsigned,dim_list_t*);
static dim_list_t *new_dim(parser_ctx_t*,unsigned,dim_list_t*);
...
@@ -107,14 +108,14 @@ static statement_t *link_statements(statement_t*,statement_t*);
...
@@ -107,14 +108,14 @@ static statement_t *link_statements(statement_t*,statement_t*);
%token tEXPRESSION tEOF tNL tEMPTYBRACKETS
%token tEXPRESSION tEOF tNL tEMPTYBRACKETS
%token tLTEQ tGTEQ tNEQ
%token tLTEQ tGTEQ tNEQ
%token tSTOP tME tREM
%token tSTOP tME tREM
tDOT
%token <string> tTRUE tFALSE
%token <string> tTRUE tFALSE
%token <string> tNOT tAND tOR tXOR tEQV tIMP
%token <string> tNOT tAND tOR tXOR tEQV tIMP
%token <string> tIS tMOD
%token <string> tIS tMOD
%token <string> tCALL tDIM tSUB tFUNCTION tGET tLET tCONST
%token <string> tCALL tDIM tSUB tFUNCTION tGET tLET tCONST
%token <string> tIF tELSE tELSEIF tEND tTHEN tEXIT
%token <string> tIF tELSE tELSEIF tEND tTHEN tEXIT
%token <string> tWHILE tWEND tDO tLOOP tUNTIL tFOR tTO tEACH tIN
%token <string> tWHILE tWEND tDO tLOOP tUNTIL tFOR tTO tEACH tIN
%token <string> tSELECT tCASE
%token <string> tSELECT tCASE
tWITH
%token <string> tBYREF tBYVAL
%token <string> tBYREF tBYVAL
%token <string> tOPTION
%token <string> tOPTION
%token <string> tNOTHING tEMPTY tNULL
%token <string> tNOTHING tEMPTY tNULL
...
@@ -221,10 +222,14 @@ SimpleStatement
...
@@ -221,10 +222,14 @@ SimpleStatement
{ $$ = new_foreach_statement(ctx, $3, $5, $7); }
{ $$ = new_foreach_statement(ctx, $3, $5, $7); }
| tSELECT tCASE Expression StSep CaseClausules tEND tSELECT
| tSELECT tCASE Expression StSep CaseClausules tEND tSELECT
{ $$ = new_select_statement(ctx, $3, $5); }
{ $$ = new_select_statement(ctx, $3, $5); }
| tWITH Expression StSep StatementsNl_opt tEND tWITH
{ $$ = new_with_statement(ctx, $2, $4); }
MemberExpression
MemberExpression
: Identifier { $$ = new_member_expression(ctx, NULL, $1); CHECK_ERROR; }
: Identifier { $$ = new_member_expression(ctx, NULL, $1); CHECK_ERROR; }
| CallExpression '.' DotIdentifier { $$ = new_member_expression(ctx, $1, $3); CHECK_ERROR; }
| CallExpression '.' DotIdentifier { $$ = new_member_expression(ctx, $1, $3); CHECK_ERROR; }
| tDOT DotIdentifier { expression_t *dot_expr = new_expression(ctx, EXPR_DOT, sizeof(*dot_expr)); CHECK_ERROR;
$$ = new_member_expression(ctx, dot_expr, $2); CHECK_ERROR; }
DimDeclList
DimDeclList
: DimDecl { $$ = $1; }
: DimDecl { $$ = $1; }
...
@@ -946,6 +951,19 @@ static statement_t *new_select_statement(parser_ctx_t *ctx, expression_t *expr,
...
@@ -946,6 +951,19 @@ static statement_t *new_select_statement(parser_ctx_t *ctx, expression_t *expr,
return &stat->stat;
return &stat->stat;
}
}
static statement_t *new_with_statement(parser_ctx_t *ctx, expression_t *expr, statement_t *body)
{
with_statement_t *stat;
stat = new_statement(ctx, STAT_WITH, sizeof(*stat));
if(!stat)
return NULL;
stat->expr = expr;
stat->body = body;
return &stat->stat;
}
static case_clausule_t *new_case_clausule(parser_ctx_t *ctx, expression_t *expr, statement_t *stat, case_clausule_t *next)
static case_clausule_t *new_case_clausule(parser_ctx_t *ctx, expression_t *expr, statement_t *stat, case_clausule_t *next)
{
{
case_clausule_t *ret;
case_clausule_t *ret;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment