File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 6
6
//
7
7
// This file is expected not to perform any asynchronous operations itself
8
8
// when being executed - those should be done in either
9
- // `lib/internal/bootstrap /pre_execution.js` or in main scripts. The majority
9
+ // `lib/internal/process /pre_execution.js` or in main scripts. The majority
10
10
// of the code here focuses on setting up the global proxy and the process
11
11
// object in a synchronous manner.
12
12
// As special caution is given to the performance of the startup process,
28
28
// Then, depending on how the Node.js instance is launched, one of the main
29
29
// scripts in `lib/internal/main` will be selected by C++ to start the actual
30
30
// execution. They may run additional setups exported by
31
- // `lib/internal/bootstrap /pre_execution.js` depending on the runtime states.
31
+ // `lib/internal/process /pre_execution.js` depending on the runtime states.
32
32
33
33
'use strict' ;
34
34
Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ function requireForUserSnapshot(id) {
114
114
function main ( ) {
115
115
const {
116
116
prepareMainThreadExecution
117
- } = require ( 'internal/bootstrap /pre_execution' ) ;
117
+ } = require ( 'internal/process /pre_execution' ) ;
118
118
119
119
prepareMainThreadExecution ( true , false ) ;
120
120
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ function lazyUndici() {
15
15
16
16
// This is essentially an implementation of a v8::WasmStreamingCallback, except
17
17
// that it is implemented in JavaScript because the fetch() implementation is
18
- // difficult to use from C++. See lib/internal/bootstrap /pre_execution.js and
18
+ // difficult to use from C++. See lib/internal/process /pre_execution.js and
19
19
// src/node_wasm_web_api.cc that interact with this function.
20
20
function wasmStreamingCallback ( streamState , source ) {
21
21
( async ( ) => {
You can’t perform that action at this time.
0 commit comments