Merge branch 'native_boot'

This commit is contained in:
2026-02-22 20:48:19 -06:00
19 changed files with 59808 additions and 22461 deletions

View File

@@ -3461,6 +3461,16 @@ run("delete nonexistent", function() {
if (obj.a != 1) fail("delete nonexistent should not affect object")
})
run("delete then nested closure", function() {
var r = {a: 1, b: 2}
delete r.b
var f = function(x) {
return function() { return x }
}
var g = f(10)
assert_eq(g(), 10, "nested closure after delete")
})
// ============================================================================
// TYPEOF-LIKE BEHAVIOR
// ============================================================================