We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59eeb3b commit 7ed0d14Copy full SHA for 7ed0d14
src/node_symbols.cc
@@ -16,10 +16,10 @@ static void Initialize(Local<Object> target,
16
Local<Context> context,
17
void* priv) {
18
Environment* env = Environment::GetCurrent(context);
19
-#define V(PropertyName, StringValue) \
20
- target \
21
- ->Set(env->context(), env->PropertyName()->Name(), env->PropertyName()) \
22
- .Check();
+#define V(PropertyName, StringValue) \
+ target->Set(env->context(), \
+ env->PropertyName()->Description(), \
+ env->PropertyName()).Check();
23
PER_ISOLATE_SYMBOL_PROPERTIES(V)
24
#undef V
25
}
0 commit comments