Commit 1ac1ffba authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

vbscript: Added support for a few more characters in lexer.

parent 6e749ba5
...@@ -76,6 +76,18 @@ static int parse_next_token(void *lval, parser_ctx_t *ctx) ...@@ -76,6 +76,18 @@ static int parse_next_token(void *lval, parser_ctx_t *ctx)
else else
ctx->ptr = ctx->end; ctx->ptr = ctx->end;
return tNL; return tNL;
case '(':
case ')':
case ',':
case '=':
case '+':
case '-':
case '*':
case '/':
case '^':
case '\\':
case '.':
return *ctx->ptr++;
default: default:
FIXME("Unhandled char %c in %s\n", *ctx->ptr, debugstr_w(ctx->ptr)); FIXME("Unhandled char %c in %s\n", *ctx->ptr, debugstr_w(ctx->ptr));
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment