Skip to content

Commit

Permalink
src: elevate repeated use of v8 namespaced type
Browse files Browse the repository at this point in the history
PR-URL: #24427
Reviewed-By: Michaël Zasso <[email protected]>
Reviewed-By: Refael Ackermann <[email protected]>
Reviewed-By: Anna Henningsen <[email protected]>
Reviewed-By: Colin Ihrig <[email protected]>
Reviewed-By: Gireesh Punathil <[email protected]>
  • Loading branch information
Shubhamurkade authored and codebytere committed Jan 29, 2019
1 parent d2d6287 commit bfde244
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions src/inspector_agent.cc
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ using v8::Function;
using v8::HandleScope;
using v8::Isolate;
using v8::Local;
using v8::Message;
using v8::Object;
using v8::String;
using v8::Value;
Expand Down Expand Up @@ -361,7 +362,7 @@ class SameThreadInspectorSession : public InspectorSession {
};

void NotifyClusterWorkersDebugEnabled(Environment* env) {
v8::Isolate* isolate = env->isolate();
Isolate* isolate = env->isolate();
HandleScope handle_scope(isolate);
auto context = env->context();

Expand Down Expand Up @@ -511,7 +512,7 @@ class NodeInspectorClient : public V8InspectorClient {
}
}

void FatalException(Local<Value> error, Local<v8::Message> message) {
void FatalException(Local<Value> error, Local<Message> message) {
Isolate* isolate = env_->isolate();
Local<Context> context = env_->context();

Expand Down Expand Up @@ -761,7 +762,7 @@ void Agent::WaitForDisconnect() {
}
}

void Agent::FatalException(Local<Value> error, Local<v8::Message> message) {
void Agent::FatalException(Local<Value> error, Local<Message> message) {
if (!IsListening())
return;
client_->FatalException(error, message);
Expand All @@ -773,8 +774,8 @@ void Agent::PauseOnNextJavascriptStatement(const std::string& reason) {
}

void Agent::RegisterAsyncHook(Isolate* isolate,
v8::Local<v8::Function> enable_function,
v8::Local<v8::Function> disable_function) {
Local<Function> enable_function,
Local<Function> disable_function) {
enable_async_hook_function_.Reset(isolate, enable_function);
disable_async_hook_function_.Reset(isolate, disable_function);
if (pending_enable_async_hook_) {
Expand Down Expand Up @@ -849,7 +850,7 @@ void Agent::RequestIoThreadStart() {
// continuous JS code) and to wake up libuv thread (in case Node is waiting
// for IO events)
uv_async_send(&start_io_thread_async);
v8::Isolate* isolate = parent_env_->isolate();
Isolate* isolate = parent_env_->isolate();
v8::Platform* platform = parent_env_->isolate_data()->platform();
platform->CallOnForegroundThread(isolate, new StartIoTask(this));
isolate->RequestInterrupt(StartIoInterrupt, this);
Expand Down

0 comments on commit bfde244

Please sign in to comment.