-
db51eee4
by Francis De Brabandere at 2026-04-06T18:42:49+02:00
vbscript: Restrict identifier characters to ASCII-only.
-
dcd71cb3
by Francis De Brabandere at 2026-04-06T18:42:49+02:00
vbscript: Handle vertical tab and form feed as whitespace in lexer.
-
555798f3
by Francis De Brabandere at 2026-04-06T18:42:49+02:00
vbscript: Use ASCII-only case folding in check_keyword.
-
359546da
by Francis De Brabandere at 2026-04-06T18:42:49+02:00
vbscript: Add vbs_wcsicmp and use it in interpreter.
Replace locale-aware wcsicmp() with ASCII-only vbs_wcsicmp() for
identifier comparisons. This avoids the expensive locale grab/free
cycle that dominated profiling in identifier lookup paths.
-
a415a41d
by Francis De Brabandere at 2026-04-06T18:42:49+02:00
vbscript: Replace wcsicmp with vbs_wcsicmp in compiler, globals, and dispatch.