Browse Source

Merge pull request #1605 from Legimet/module-node-fixes

module-node fixes
pull/1606/head
Sami Vaarala 7 years ago
committed by GitHub
parent
commit
cfb72d4ead
  1. 12
      extras/module-node/duk_module_node.c

12
extras/module-node/duk_module_node.c

@ -112,7 +112,7 @@ static duk_ret_t duk__handle_require(duk_context *ctx) {
ret = duk_pcall(ctx, 3);
if (ret != DUK_EXEC_SUCCESS) {
duk__del_cached_module(ctx, id);
duk_throw(ctx); /* rethrow */
(void) duk_throw(ctx); /* rethrow */
}
if (duk_is_string(ctx, -1)) {
@ -127,13 +127,13 @@ static duk_ret_t duk__handle_require(duk_context *ctx) {
#endif
if (ret != DUK_EXEC_SUCCESS) {
duk__del_cached_module(ctx, id);
duk_throw(ctx); /* rethrow */
(void) duk_throw(ctx); /* rethrow */
}
} else if (duk_is_undefined(ctx, -1)) {
duk_pop(ctx);
} else {
duk__del_cached_module(ctx, id);
duk_error(ctx, DUK_ERR_TYPE_ERROR, "invalid module load callback return value");
(void) duk_error(ctx, DUK_ERR_TYPE_ERROR, "invalid module load callback return value");
}
/* fall through */
@ -292,7 +292,13 @@ void duk_module_node_init(duk_context *ctx) {
/* Initialize the require cache to a fresh object. */
duk_push_global_stash(ctx);
#if DUK_VERSION >= 19999
duk_push_bare_object(ctx);
#else
duk_push_object(ctx);
duk_push_undefined(ctx);
duk_set_prototype(ctx, -2);
#endif
duk_put_prop_string(ctx, -2, "\xff" "requireCache");
duk_pop(ctx);

Loading…
Cancel
Save