summaryrefslogtreecommitdiffstats
path: root/chromium/v8/src/interpreter/bytecode-generator.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/v8/src/interpreter/bytecode-generator.cc')
-rw-r--r--chromium/v8/src/interpreter/bytecode-generator.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/chromium/v8/src/interpreter/bytecode-generator.cc b/chromium/v8/src/interpreter/bytecode-generator.cc
index 4a1c045927e..9a758370635 100644
--- a/chromium/v8/src/interpreter/bytecode-generator.cc
+++ b/chromium/v8/src/interpreter/bytecode-generator.cc
@@ -4886,7 +4886,8 @@ void BytecodeGenerator::VisitCall(Call* expr) {
break;
}
case Call::NAMED_OPTIONAL_CHAIN_PROPERTY_CALL:
- case Call::KEYED_OPTIONAL_CHAIN_PROPERTY_CALL: {
+ case Call::KEYED_OPTIONAL_CHAIN_PROPERTY_CALL:
+ case Call::PRIVATE_OPTIONAL_CHAIN_CALL: {
OptionalChain* chain = callee_expr->AsOptionalChain();
Property* property = chain->expression()->AsProperty();
BuildOptionalChain([&]() {