File tree Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change 1212
1313namespace node {
1414
15- using v8::Local;
16- using v8::Message;
17- using v8::Value;
18-
1915enum ErrorHandlingMode { CONTEXTIFY_ERROR, FATAL_ERROR, MODULE_ERROR };
2016void AppendExceptionLine (Environment* env,
21- Local<Value> er,
22- Local<Message> message,
17+ v8:: Local<v8:: Value> er,
18+ v8:: Local<v8:: Message> message,
2319 enum ErrorHandlingMode mode);
2420
2521[[noreturn]] void FatalError (const char * location, const char * message);
@@ -195,8 +191,8 @@ class TryCatchScope : public v8::TryCatch {
195191void TriggerUncaughtException (v8::Isolate* isolate,
196192 const v8::TryCatch& try_catch);
197193void TriggerUncaughtException (v8::Isolate* isolate,
198- Local<Value> error,
199- Local<Message> message,
194+ v8:: Local<v8:: Value> error,
195+ v8:: Local<v8:: Message> message,
200196 bool from_promise = false );
201197
202198const char * errno_string (int errorno);
You can’t perform that action at this time.
0 commit comments