From c461f8fd2e36904b3334c9705726b713712f4a69 Mon Sep 17 00:00:00 2001 From: snek Date: Tue, 9 Jul 2024 10:07:56 -0700 Subject: fix: do not return undefined for missing global properties (#24474) accessing e.g. `Buffer` in `Mode::Deno` mode should throw, not return undefined. --------- Signed-off-by: snek --- ext/web/02_timers.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ext/web') diff --git a/ext/web/02_timers.js b/ext/web/02_timers.js index e30071971..559147861 100644 --- a/ext/web/02_timers.js +++ b/ext/web/02_timers.js @@ -35,7 +35,7 @@ function checkThis(thisArg) { function setImmediate(callback, ...args) { if (args.length > 0) { const unboundCallback = callback; - callback = () => ReflectApply(unboundCallback, window, args); + callback = () => ReflectApply(unboundCallback, globalThis, args); } return core.queueImmediate( @@ -55,7 +55,7 @@ function setTimeout(callback, timeout = 0, ...args) { } if (args.length > 0) { const unboundCallback = callback; - callback = () => ReflectApply(unboundCallback, window, args); + callback = () => ReflectApply(unboundCallback, globalThis, args); } timeout = webidl.converters.long(timeout); return core.queueUserTimer( @@ -77,7 +77,7 @@ function setInterval(callback, timeout = 0, ...args) { } if (args.length > 0) { const unboundCallback = callback; - callback = () => ReflectApply(unboundCallback, window, args); + callback = () => ReflectApply(unboundCallback, globalThis, args); } timeout = webidl.converters.long(timeout); return core.queueUserTimer( -- cgit v1.2.3