vbscript: Added support for a few more characters in lexer.
This commit is contained in:
parent
6e749ba5dc
commit
1ac1ffba11
|
@ -76,6 +76,18 @@ static int parse_next_token(void *lval, parser_ctx_t *ctx)
|
|||
else
|
||||
ctx->ptr = ctx->end;
|
||||
return tNL;
|
||||
case '(':
|
||||
case ')':
|
||||
case ',':
|
||||
case '=':
|
||||
case '+':
|
||||
case '-':
|
||||
case '*':
|
||||
case '/':
|
||||
case '^':
|
||||
case '\\':
|
||||
case '.':
|
||||
return *ctx->ptr++;
|
||||
default:
|
||||
FIXME("Unhandled char %c in %s\n", *ctx->ptr, debugstr_w(ctx->ptr));
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue