mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04:00
perf: prefer NewFromUtf8Literal() over NewFromUtf8() for string literals (#44412)
* perf: prefer NewFromUtf8Literal() over NewFromUtf8() for string literals the string length is known at compile time and no need to call ToLocalChecked() * perf: string length is known when calling NewFromUtf8(), so use it * perf: remove unnecessary calls to c_str() these just force the code being called to have to recalculate the string length
This commit is contained in:
@@ -18,8 +18,7 @@ class Archive : public node::ObjectWrap {
|
||||
static v8::Local<v8::FunctionTemplate> CreateFunctionTemplate(
|
||||
v8::Isolate* isolate) {
|
||||
auto tpl = v8::FunctionTemplate::New(isolate, Archive::New);
|
||||
tpl->SetClassName(
|
||||
v8::String::NewFromUtf8(isolate, "Archive").ToLocalChecked());
|
||||
tpl->SetClassName(v8::String::NewFromUtf8Literal(isolate, "Archive"));
|
||||
tpl->InstanceTemplate()->SetInternalFieldCount(1);
|
||||
|
||||
NODE_SET_PROTOTYPE_METHOD(tpl, "getFileInfo", &Archive::GetFileInfo);
|
||||
|
||||
Reference in New Issue
Block a user