summaryrefslogtreecommitdiff
path: root/test/message/error_exit.out
diff options
context:
space:
mode:
authorJoyee Cheung <joyeec9h3@gmail.com>2018-03-07 02:30:18 +0800
committerJoyee Cheung <joyeec9h3@gmail.com>2018-03-15 20:50:35 +0800
commitc2b01881dcb3bf302f9d83157e719cc5240a9042 (patch)
tree55446f6bda8c376cc52a7be2c139e2cc9236ae2d /test/message/error_exit.out
parent8484b40b3d38e18c524b7dd560c16ab30c94e427 (diff)
downloadandroid-node-v8-c2b01881dcb3bf302f9d83157e719cc5240a9042.tar.gz
android-node-v8-c2b01881dcb3bf302f9d83157e719cc5240a9042.tar.bz2
android-node-v8-c2b01881dcb3bf302f9d83157e719cc5240a9042.zip
lib: restructure cjs and esm loaders
Create `lib/internal/modules` and restructure the module loaders to make the purpose of those files clearer. Also make it clear in the code that the object exported by `lib/internal/modules/cjs/loader.js` is `CJSModule` instead of the ambiguous `Module`. Before: ``` lib ├── ... ├── internal │ ├── loaders │ │ ├── CreateDynamicModule.js │ │ ├── DefaultResolve.js │ │ ├── Loader.js │ │ ├── ModuleJob.js │ │ ├── ModuleMap.js │ │ └── Translators.js │ └── module.js └── module.js ``` After: ``` lib ├── ... ├── internal │ ├── ... │ └── modules │ ├── cjs │ │ ├── helpers.js │ │ └── loader.js │ └── esm │ ├── CreateDynamicModule.js │ ├── DefaultResolve.js │ ├── Loader.js │ ├── ModuleJob.js │ ├── ModuleMap.js │ └── Translators.js └── module.js # deleted in this commit to work with git file mode ``` PR-URL: https://github.com/nodejs/node/pull/19177 Refs: https://github.com/nodejs/node/pull/19112 Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Diffstat (limited to 'test/message/error_exit.out')
-rw-r--r--test/message/error_exit.out12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/message/error_exit.out b/test/message/error_exit.out
index 2cbc4ad4fd..e7bcb05065 100644
--- a/test/message/error_exit.out
+++ b/test/message/error_exit.out
@@ -5,11 +5,11 @@ assert.js:*
AssertionError [ERR_ASSERTION]: 1 strictEqual 2
at Object.<anonymous> (*test*message*error_exit.js:*:*)
- at Module._compile (module.js:*:*)
- at Object.Module._extensions..js (module.js:*:*)
- at Module.load (module.js:*:*)
- at tryModuleLoad (module.js:*:*)
- at Function.Module._load (module.js:*:*)
- at Function.Module.runMain (module.js:*:*)
+ at Module._compile (internal/modules/cjs/loader.js:*:*)
+ at Object.Module._extensions..js (internal/modules/cjs/loader.js:*:*)
+ at Module.load (internal/modules/cjs/loader.js:*:*)
+ at tryModuleLoad (internal/modules/cjs/loader.js:*:*)
+ at Function.Module._load (internal/modules/cjs/loader.js:*:*)
+ at Function.Module.runMain (internal/modules/cjs/loader.js:*:*)
at startup (internal/bootstrap/node.js:*:*)
at bootstrapNodeJSCore (internal/bootstrap/node.js:*:*)