How does bun set up JavaScriptCore to run the entry point script file contents? #2398
-
When I do |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
This function is where the script execution context is initialized: Lines 47 to 66 in 6f59bc7 This is where we call the code to evaluate the ESM module: Line 1537 in 6f59bc7 This function is where it does the C++ equivalent of bun/src/bun.js/bindings/bindings.cpp Lines 2048 to 2065 in 6f59bc7 |
Beta Was this translation helpful? Give feedback.
This function is where the script execution context is initialized:
bun/src/bun_js.zig
Lines 47 to 66 in 6f59bc7