diff --git a/src/env-inl.h b/src/env-inl.h index 1e173cca12c81a..5a2f6bb36aeb8b 100644 --- a/src/env-inl.h +++ b/src/env-inl.h @@ -1106,13 +1106,13 @@ void AsyncRequest::set_stopped(bool flag) { inline void Environment::set_ ## PropertyName(v8::Local value) { \ PropertyName ## _.Reset(isolate(), value); \ } - ENVIRONMENT_STRONG_PERSISTENT_DATA(V) + ENVIRONMENT_STRONG_PERSISTENT_TEMPLATE(V) ENVIRONMENT_STRONG_PERSISTENT_VALUES(V) #undef V - inline v8::Local Environment::context() const { - return PersistentToLocal::Strong(context_); - } +inline v8::Local Environment::context() const { + return PersistentToLocal::Strong(context_); +} } // namespace node #endif // defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS diff --git a/src/env.h b/src/env.h index bdeadaedadbed5..f16c79d232ec7e 100644 --- a/src/env.h +++ b/src/env.h @@ -340,7 +340,7 @@ constexpr size_t kFsStatsBufferLength = kFsStatsFieldsNumber * 2; V(x_forwarded_string, "x-forwarded-for") \ V(zero_return_string, "ZERO_RETURN") -#define ENVIRONMENT_STRONG_PERSISTENT_DATA(V) \ +#define ENVIRONMENT_STRONG_PERSISTENT_TEMPLATE(V) \ V(as_callback_data_template, v8::FunctionTemplate) \ V(async_wrap_ctor_template, v8::FunctionTemplate) \ V(async_wrap_object_ctor_template, v8::FunctionTemplate) \ @@ -1060,7 +1060,7 @@ class Environment : public MemoryRetainer { inline v8::Local PropertyName() const; \ inline void set_ ## PropertyName(v8::Local value); ENVIRONMENT_STRONG_PERSISTENT_VALUES(V) - ENVIRONMENT_STRONG_PERSISTENT_DATA(V) + ENVIRONMENT_STRONG_PERSISTENT_TEMPLATE(V) #undef V inline v8::Local context() const; @@ -1295,7 +1295,7 @@ class Environment : public MemoryRetainer { #define V(PropertyName, TypeName) v8::Global PropertyName ## _; ENVIRONMENT_STRONG_PERSISTENT_VALUES(V) - ENVIRONMENT_STRONG_PERSISTENT_DATA(V) + ENVIRONMENT_STRONG_PERSISTENT_TEMPLATE(V) #undef V v8::Global context_;