-
Notifications
You must be signed in to change notification settings - Fork 1
Description
Context: Fix Test262 failures for TypedArray.prototype.join (including resizable buffer shrink/detach and number string formatting).\n\nChanges:\n- Allow join to proceed after buffer shrink/detach (no per-iteration OOB throw) using GetValueForIndex.\n- Ensure separator coercion throws even when length is zero by using direct ToJsString (no context swallow).\n- Use NumberHelper.NumberToString for numeric element string conversion to match Number.prototype.toString output; handle BigInt explicitly.\n\nTests:\n- dotnet test tests/Asynkron.JsEngine.Tests.Test262 -c Release --settings tests/Asynkron.JsEngine.Tests.Test262/BuiltInsTests.runsettings --filter "Name=TypedArray_prototype_join"\n- dotnet test tests/Asynkron.JsEngine.Tests.Test262 -c Release --settings tests/Asynkron.JsEngine.Tests.Test262/BuiltInsTests.runsettings --filter "Name=TypedArray_prototype_join_BigInt"\n