From 8f9fb8154d7f2a67bad90bfcdd3a29224b46d979 Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Wed, 3 Aug 2016 10:08:47 +0200 Subject: [PATCH] src: updating references to the old node.js file The node.js script was renamed to bootstrap_node.js as part of 81b6882e519fcfbb07c85815dccdcc663204e6e6. Several comments were missed in src/node.cc that referred to the old file name. This commit updates the comments to refer to bootstrap_node.js and correct the path to this file where used. It also moves a comment that seems to have drifted in the file. PR-URL: https://github.com/nodejs/node/pull/8092 Reviewed-By: Jeremiah Senkpiel Reviewed-By: Brian White Reviewed-By: James M Snell --- src/node.cc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/node.cc b/src/node.cc index 5ad1a73672e3bd..22a4d91a334edd 100644 --- a/src/node.cc +++ b/src/node.cc @@ -3439,7 +3439,6 @@ void LoadEnvironment(Environment* env) { env->isolate()->SetFatalErrorHandler(node::OnFatalError); env->isolate()->AddMessageListener(OnMessage); - // The node.js file returns a function 'f' atexit(AtExit); TryCatch try_catch(env->isolate()); @@ -3459,16 +3458,17 @@ void LoadEnvironment(Environment* env) { ReportException(env, try_catch); exit(10); } + // The bootstrap_node.js file returns a function 'f' CHECK(f_value->IsFunction()); Local f = Local::Cast(f_value); // Now we call 'f' with the 'process' variable that we've built up with - // all our bindings. Inside node.js we'll take care of assigning things to - // their places. + // all our bindings. Inside bootstrap_node.js we'll take care of + // assigning things to their places. // We start the process this way in order to be more modular. Developers - // who do not like how 'src/node.js' setups the module system but do like - // Node's I/O bindings may want to replace 'f' with their own function. + // who do not like how bootstrap_node.js setups the module system but do + // like Node's I/O bindings may want to replace 'f' with their own function. // Add a reference to the global object Local global = env->context()->Global();