15 Aug
2023
15 Aug
'23
4:07 p.m.
Gabriel Ivăncescu (@insn) commented about dlls/mshtml/tests/es5.js:
expect_array(new C(), false); });
+sync_test("array_splice", function() { + var arr = [1,2,3,4,5] + tmp = arr.splice(2);
Sorry, missed this, please add `var` before tmp, so you don't end up creating a global variable (and put semi-colon after arr decl). -- https://gitlab.winehq.org/wine/wine/-/merge_requests/3567#note_42349