File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -906,7 +906,7 @@ void Worker::LoopStartTime(const FunctionCallbackInfo<Value>& args) {
906906 args.GetReturnValue ().Set (loop_start_time / 1e6 );
907907}
908908
909- void Worker::HasHooksThreadAlready (const FunctionCallbackInfo<Value>& args) {
909+ void Worker::HasHooksThread (const FunctionCallbackInfo<Value>& args) {
910910 args.GetReturnValue ().Set (Worker::internalExists);
911911}
912912
@@ -1019,7 +1019,7 @@ void RegisterExternalReferences(ExternalReferenceRegistry* registry) {
10191019 registry->Register (Worker::TakeHeapSnapshot);
10201020 registry->Register (Worker::LoopIdleTime);
10211021 registry->Register (Worker::LoopStartTime);
1022- registry->Register (Worker::HasHooksThreadAlready );
1022+ registry->Register (Worker::HasHooksThread );
10231023}
10241024
10251025} // anonymous namespace
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ class Worker : public AsyncWrap {
7777 static void TakeHeapSnapshot (const v8::FunctionCallbackInfo<v8::Value>& args);
7878 static void LoopIdleTime (const v8::FunctionCallbackInfo<v8::Value>& args);
7979 static void LoopStartTime (const v8::FunctionCallbackInfo<v8::Value>& args);
80- static void HasHooksThreadAlready (const v8::FunctionCallbackInfo<v8::Value>& args);
80+ static void HasHooksThread (const v8::FunctionCallbackInfo<v8::Value>& args);
8181
8282 private:
8383 bool CreateEnvMessagePort (Environment* env);
You can’t perform that action at this time.
0 commit comments