Implementations for global JavaScript functions such as eval, require, and queueMicrotask.
Summary
Functions
Implements global eval for source strings by compiling and evaluating them in the current runtime.
Implements the CommonJS-like require global backed by registered VM modules.
Implements queueMicrotask by enqueuing a callback in the VM microtask queue.
Functions
Implements global eval for source strings by compiling and evaluating them in the current runtime.
Implements the CommonJS-like require global backed by registered VM modules.
Implements queueMicrotask by enqueuing a callback in the VM microtask queue.