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

This commit is contained in:
Jacek Caban 2011-09-08 14:55:14 +02:00 committed by Alexandre Julliard
parent 6e749ba5dc
commit 1ac1ffba11
1 changed files with 12 additions and 0 deletions

View File

@ -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));
} }