Skip to content
This repository was archived by the owner on Apr 16, 2020. It is now read-only.

Commit 6003498

Browse files
MylesBorinsnodejs-ci
authored andcommitted
fixup: impl remove try/catch
1 parent c94c7e7 commit 6003498

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/module_wrap.cc

-4
Original file line numberDiff line numberDiff line change
@@ -903,17 +903,13 @@ void ModuleWrap::Resolve(const FunctionCallbackInfo<Value>& args) {
903903
env, "second argument is not a URL string");
904904
}
905905

906-
TryCatchScope try_catch(env);
907906
Maybe<URL> result =
908907
node::loader::Resolve(env,
909908
specifier_std,
910909
url);
911910
if (result.IsNothing()) {
912-
CHECK(try_catch.HasCaught());
913-
try_catch.ReThrow();
914911
return;
915912
}
916-
CHECK(!try_catch.HasCaught());
917913

918914
URL resolution = result.FromJust();
919915
CHECK(!(resolution.flags() & URL_FLAGS_FAILED));

0 commit comments

Comments
 (0)