Commit 0cdea40a authored by Marja Hölttä's avatar Marja Hölttä Committed by V8 LUCI CQ

[objects printing] Fix SFI printing

Change-Id: Iafca9e5ddf85bc528d4043863ec71ae1ce7020d1
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3641168Reviewed-by: 's avatarCamillo Bruni <cbruni@chromium.org>
Commit-Queue: Marja Hölttä <marja@chromium.org>
Cr-Commit-Position: refs/heads/main@{#80476}
parent fe443a4e
......@@ -1626,7 +1626,8 @@ void SharedFunctionInfo::SharedFunctionInfoPrint(std::ostream& os) {
os << "\n - function_map_index: " << function_map_index();
os << "\n - formal_parameter_count: "
<< internal_formal_parameter_count_without_receiver();
os << "\n - expected_nof_properties: " << expected_nof_properties();
os << "\n - expected_nof_properties: "
<< static_cast<int>(expected_nof_properties());
os << "\n - language_mode: " << language_mode();
os << "\n - data: " << Brief(function_data(kAcquireLoad));
os << "\n - code (from data): ";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment