mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
Created these while experimenting with LibJS. Might as well bring them into the tree and increase our coverage.
9 lines
181 B
JavaScript
9 lines
181 B
JavaScript
// Test that assigning to a function parameter does not emit ThrowIfTDZ,
|
|
// since parameters are never in the temporal dead zone.
|
|
|
|
function isect(far, d) {
|
|
far = d;
|
|
}
|
|
|
|
isect();
|