Commit e5eaf4d2 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

vbscript: Added lexer support for remaining equality expressions.

parent 84f549b6
......@@ -299,6 +299,22 @@ static int parse_next_token(void *lval, parser_ctx_t *ctx)
return '(';
case '"':
return parse_string_literal(ctx, lval);
case '<':
switch(*++ctx->ptr) {
case '>':
ctx->ptr++;
return tNEQ;
case '=':
ctx->ptr++;
return tLTEQ;
}
return '<';
case '>':
if(*++ctx->ptr == '=') {
ctx->ptr++;
return tGTEQ;
}
return '>';
default:
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