私が答えていたとき 別の質問 トップレベルのreturn
ステートメントを持つNode.jsモジュールに出くわしました。例えば:
console.log("Trying to reach");
return;
console.log("dead code");
これは動作します エラーなし と出力します:
Trying to reach
標準出力ではなく "dead code
"-return
は実際に実行を中止しました。
しかし ECMAScript 5.1のreturn
ステートメントの仕様 によれば、
セマンティクス
ECMAScriptプログラムは
FunctionBody
内にないreturnステートメントが含まれている場合、構文的に正しくないと見なされます。
上記のプログラムでは、return
は関数内にありません。
では、なぜこれがスローされないのですか?
TL; DR
モジュールは、次のようにNode.jsによって関数内にラップされます。
_(function (exports, require, module, __filename, __dirname) {
// our actual module code
});
_
したがって、上記のコードは実際には次のようにNode.jsによって実行されます
_(function (exports, require, module, __filename, __dirname) {
console.log("Trying to reach");
return;
console.log("dead code");
});
_
そのため、プログラムは_Trying to reach
_のみを出力し、return
ステートメントに続く_console.log
_をスキップします。
ここで、Node.jsがモジュールを処理する方法を理解する必要があります。 Node.jsで.jsファイルを実行すると、Node.jsはそれをモジュールとして扱い、v8 JavaScriptエンジンでコンパイルします。
すべては runMain
function で始まり、
_// bootstrap main module.
Module.runMain = function() {
// Load the main module--the command line argument.
Module._load(process.argv[1], null, true);
// Handle any nextTicks added in the first tick of the program
process._tickCallback();
};
_
_Module._load
_ 関数では、 新しいモジュールオブジェクトが作成されます および 読み込まれます です。
_var module = new Module(filename, parent);
...
...
try {
module.load(filename);
hadException = false;
_
_// Given a file name, pass it to the proper extension handler.
Module.prototype.load = function(filename) {
debug('load ' + JSON.stringify(filename) +
' for module ' + JSON.stringify(this.id));
assert(!this.loaded);
this.filename = filename;
this.paths = Module._nodeModulePaths(path.dirname(filename));
var extension = path.extname(filename) || '.js';
if (!Module._extensions[extension]) extension = '.js';
Module._extensions[extension](this, filename);
this.loaded = true;
};
_
ファイルの拡張子はjs
なので、_Module._extensions
_が_.js
_に対して何を持っているかがわかります。見ることができる ここ
_// Native extension for .js
Module._extensions['.js'] = function(module, filename) {
var content = fs.readFileSync(filename, 'utf8');
module._compile(stripBOM(content), filename);
};
_
module
オブジェクトの__compile
_がその関数で呼び出され、 ここで魔法が発生します 、
_// Run the file contents in the correct scope or sandbox. Expose
// the correct helper variables (require, module, exports) to
// the file.
// Returns exception, if any.
_
ここで、ノードモジュールが使用する require
関数が最初に作成されます。
_function require(path) {
return self.require(path);
}
require.resolve = function(request) {
return Module._resolveFilename(request, self);
};
Object.defineProperty(require, 'paths', { get: function() {
throw new Error('require.paths is removed. Use ' +
'node_modules folders, or the NODE_PATH ' +
'environment variable instead.');
}});
require.main = process.mainModule;
// Enable support to add extra extension types
require.extensions = Module._extensions;
require.registerExtension = function() {
throw new Error('require.registerExtension() removed. Use ' +
'require.extensions instead.');
};
require.cache = Module._cache;
_
そして、コードをラップすることについて何かがあります、
_// create wrapper function
var wrapper = Module.wrap(content);
_
_Module.wrap
_が何をするかを見つけることに着手しました これは他に何もありません
_Module.wrap = NativeModule.wrap;
_
これは_src/node.js
_ファイルで定義されています で、これが見つかります、
_NativeModule.wrap = function(script) {
return NativeModule.wrapper[0] + script + NativeModule.wrapper[1];
};
NativeModule.wrapper = [
'(function (exports, require, module, __filename, __dirname) { ',
'\n});'
];
_
これは、プログラムがマジック変数exports
、require
、module
、___filename
_および___dirname
_
次に、ラップされた関数がコンパイルされて実行されます here with runInThisContext
、
_var compiledWrapper = runInThisContext(wrapper, { filename: filename });
_
そして最後に、モジュールのコンパイルされたラップされた関数オブジェクトが this のように呼び出され、値が exports
、 require
、 module
、 ___filename
_ および ___dirname
_
_var args = [self.exports, require, self, filename, dirname];
return compiledWrapper.apply(self.exports, args);
_
これがモジュールがNode.jsによって処理および実行される方法であり、return
ステートメントが失敗することなく機能するのはこのためです。