a5b34ee1
by Francis De Brabandere at 2026-03-19T18:13:17+01:00
vbscript: Allow Me(Idx) to compile as a call to the default property.
The lexer only treated '(' as call-argument parentheses after tIdentifier
or ')'. After tME, it was emitted as tEXPRLBRACKET, causing Me(Idx) to
fail with a syntax error. Add tME to the check so the parentheses are
correctly recognized as call arguments.
Also handle EXPR_ME in make_call_expression() so that Me(Idx) used as a
statement (without 'Call') is wrapped as a call expression.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=58248