Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnna Henningsen <anna@addaleax.net>2020-07-07 23:03:17 +0300
committerAnna Henningsen <anna@addaleax.net>2020-07-14 16:13:34 +0300
commita038199265519fa4db88a639b0e438675d23c4d1 (patch)
tree66b40d0be7e8c67e9d69593d6e00d8fd2b2ca319 /src/node_v8.cc
parent2a29650eb328417de68beb617b22e83810e9296a (diff)
src,doc,test: remove String::New default parameter
`kNormal` has been the implicit default for a while now (since V8 7.6). Refs: https://github.com/v8/v8/commit/e0d7f816990ada28ebe1281ca9431236ef8c6e4f PR-URL: https://github.com/nodejs/node/pull/34248 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'src/node_v8.cc')
-rw-r--r--src/node_v8.cc5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/node_v8.cc b/src/node_v8.cc
index 047ca594095..f34125d5f49 100644
--- a/src/node_v8.cc
+++ b/src/node_v8.cc
@@ -37,7 +37,6 @@ using v8::HeapStatistics;
using v8::Integer;
using v8::Isolate;
using v8::Local;
-using v8::NewStringType;
using v8::Object;
using v8::ScriptCompiler;
using v8::String;
@@ -225,9 +224,7 @@ void Initialize(Local<Object> target,
MaybeStackBuffer<Local<Value>, 16> heap_spaces(number_of_heap_spaces);
for (size_t i = 0; i < number_of_heap_spaces; i++) {
env->isolate()->GetHeapSpaceStatistics(&s, i);
- heap_spaces[i] = String::NewFromUtf8(env->isolate(),
- s.space_name(),
- NewStringType::kNormal)
+ heap_spaces[i] = String::NewFromUtf8(env->isolate(), s.space_name())
.ToLocalChecked();
}
target->Set(env->context(),