Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/node.h')
-rw-r--r--src/node.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/node.h b/src/node.h
index 2923c60cf61..e638ff24182 100644
--- a/src/node.h
+++ b/src/node.h
@@ -374,7 +374,7 @@ NODE_DEPRECATED("Use v8::Date::ValueOf() directly",
(target)->DefineOwnProperty(context, \
constant_name, \
constant_value, \
- constant_attributes).FromJust(); \
+ constant_attributes).Check(); \
} \
while (0)
@@ -395,7 +395,7 @@ NODE_DEPRECATED("Use v8::Date::ValueOf() directly",
(target)->DefineOwnProperty(context, \
constant_name, \
constant_value, \
- constant_attributes).FromJust(); \
+ constant_attributes).Check(); \
} \
while (0)
@@ -426,7 +426,7 @@ inline void NODE_SET_METHOD(v8::Local<v8::Object> recv,
v8::Local<v8::String> fn_name = v8::String::NewFromUtf8(isolate, name,
v8::NewStringType::kInternalized).ToLocalChecked();
fn->SetName(fn_name);
- recv->Set(context, fn_name, fn).FromJust();
+ recv->Set(context, fn_name, fn).Check();
}
#define NODE_SET_METHOD node::NODE_SET_METHOD