Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit b7876ba

Browse filesBrowse files
SarathGovindcodebytere
authored andcommitted
src: elevate namespaces for repeated entities
PR-URL: #24475 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
1 parent 8734c67 commit b7876ba
Copy full SHA for b7876ba

File tree

Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed
Open diff view settings
Collapse file

‎src/inspector_js_api.cc‎

Copy file name to clipboardExpand all lines: src/inspector_js_api.cc
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -224,9 +224,9 @@ static void RegisterAsyncHookWrapper(const FunctionCallbackInfo<Value>& args) {
224224
Environment* env = Environment::GetCurrent(args);
225225

226226
CHECK(args[0]->IsFunction());
227-
v8::Local<v8::Function> enable_function = args[0].As<Function>();
227+
Local<Function> enable_function = args[0].As<Function>();
228228
CHECK(args[1]->IsFunction());
229-
v8::Local<v8::Function> disable_function = args[1].As<Function>();
229+
Local<Function> disable_function = args[1].As<Function>();
230230
env->inspector_agent()->RegisterAsyncHook(env->isolate(),
231231
enable_function, disable_function);
232232
}

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.