This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//@ts-check | |
/* #region Schedule a new task */ | |
setTimeout(() => { | |
console.log("In Timeout"); | |
}, 100); | |
console.log("After setTimeout"); | |
/* #endregion */ | |
/* #region No Preemption */ |