File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/vs/editor/contrib/inlineCompletions/test Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -249,10 +249,10 @@ export const originalGlobalValues = {
249
249
clearTimeout : globalThis . clearTimeout . bind ( globalThis ) ,
250
250
setInterval : globalThis . setInterval . bind ( globalThis ) ,
251
251
clearInterval : globalThis . clearInterval . bind ( globalThis ) ,
252
- setImmediate : globalThis . setImmediate . bind ( globalThis ) ,
253
- clearImmediate : globalThis . clearImmediate . bind ( globalThis ) ,
254
- requestAnimationFrame : globalThis . requestAnimationFrame . bind ( globalThis ) ,
255
- cancelAnimationFrame : globalThis . cancelAnimationFrame . bind ( globalThis ) ,
252
+ setImmediate : globalThis . setImmediate ? .bind ( globalThis ) ,
253
+ clearImmediate : globalThis . clearImmediate ? .bind ( globalThis ) ,
254
+ requestAnimationFrame : globalThis . requestAnimationFrame ? .bind ( globalThis ) ,
255
+ cancelAnimationFrame : globalThis . cancelAnimationFrame ? .bind ( globalThis ) ,
256
256
Date : globalThis . Date ,
257
257
} ;
258
258
You can’t perform that action at this time.
0 commit comments