Skip to content

Commit

Permalink
src: use "constants" string instead of creating new one
Browse files Browse the repository at this point in the history
Using the same "constants" string in c++.

PR-URL: #23894
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com>
  • Loading branch information
oyyd authored and rvagg committed Nov 28, 2018
1 parent fa12532 commit e8dbd09
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/node_http2.cc
Expand Up @@ -3289,7 +3289,7 @@ HTTP_STATUS_CODES(V)
env->SetMethod(target, "packSettings", PackSettings);

target->Set(context,
FIXED_ONE_BYTE_STRING(isolate, "constants"),
env->constants_string(),
constants).FromJust();
target->Set(context,
FIXED_ONE_BYTE_STRING(isolate, "nameForErrorCode"),
Expand Down
2 changes: 1 addition & 1 deletion src/pipe_wrap.cc
Expand Up @@ -117,7 +117,7 @@ void PipeWrap::Initialize(Local<Object> target,
NODE_DEFINE_CONSTANT(constants, SERVER);
NODE_DEFINE_CONSTANT(constants, IPC);
target->Set(context,
FIXED_ONE_BYTE_STRING(env->isolate(), "constants"),
env->constants_string(),
constants).FromJust();
}

Expand Down
2 changes: 1 addition & 1 deletion src/tcp_wrap.cc
Expand Up @@ -132,7 +132,7 @@ void TCPWrap::Initialize(Local<Object> target,
NODE_DEFINE_CONSTANT(constants, SOCKET);
NODE_DEFINE_CONSTANT(constants, SERVER);
target->Set(context,
FIXED_ONE_BYTE_STRING(env->isolate(), "constants"),
env->constants_string(),
constants).FromJust();
}

Expand Down

0 comments on commit e8dbd09

Please sign in to comment.