April 15, 2026
4:10 p.m.
Jacek Caban (@jacek) commented about dlls/vbscript/interp.c:
return S_OK; }
+static HRESULT assign_local_var(exec_ctx_t *ctx, VARIANT *v, WORD flags, DISPPARAMS *dp)
Please try to avoid code duplication with the unbound code path. This essentially duplicates part of `assign_ident`, while `assign_ident` could call it instead. Ideally, I would first factor it out of `assign_ident` in a separate commit and then reuse it here. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/10515#note_136311