Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit f6aa38d

Browse filesBrowse files
targosMoLow
authored andcommitted
src: use correct variable in node_builtins.cc
PR-URL: #47343 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
1 parent e88e249 commit f6aa38d
Copy full SHA for f6aa38d

File tree

Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed
Open diff view settings
Collapse file

‎src/node_builtins.cc‎

Copy file name to clipboardExpand all lines: src/node_builtins.cc
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -560,13 +560,13 @@ void BuiltinLoader::GetCacheUsage(const FunctionCallbackInfo<Value>& args) {
560560
}
561561

562562
if (!ToV8Value(context, env->builtins_in_snapshot)
563-
.ToLocal(&builtins_without_cache_js)) {
563+
.ToLocal(&builtins_in_snapshot_js)) {
564564
return;
565565
}
566566
if (result
567567
->Set(env->context(),
568568
OneByteString(isolate, "compiledInSnapshot"),
569-
builtins_without_cache_js)
569+
builtins_in_snapshot_js)
570570
.IsNothing()) {
571571
return;
572572
}

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.