Index: src/compiler/bytecode-graph-builder.cc |
diff --git a/src/compiler/bytecode-graph-builder.cc b/src/compiler/bytecode-graph-builder.cc |
index 5c81906a7e19bd664442c2e6e93a25902c03b8b9..851d5eb096f824174541ce3bf9a06635fd65fe7b 100644 |
--- a/src/compiler/bytecode-graph-builder.cc |
+++ b/src/compiler/bytecode-graph-builder.cc |
@@ -268,6 +268,18 @@ void BytecodeGraphBuilder::VisitLdaGlobalStrict( |
} |
+void BytecodeGraphBuilder::VisitLdaGlobalInsideTypeofSloppy( |
+ const interpreter::BytecodeArrayIterator& iterator) { |
+ UNIMPLEMENTED(); |
+} |
+ |
+ |
+void BytecodeGraphBuilder::VisitLdaGlobalInsideTypeofStrict( |
+ const interpreter::BytecodeArrayIterator& iterator) { |
+ UNIMPLEMENTED(); |
+} |
+ |
+ |
void BytecodeGraphBuilder::VisitLdaGlobalSloppyWide( |
const interpreter::BytecodeArrayIterator& iterator) { |
UNIMPLEMENTED(); |
@@ -280,6 +292,18 @@ void BytecodeGraphBuilder::VisitLdaGlobalStrictWide( |
} |
+void BytecodeGraphBuilder::VisitLdaGlobalInsideTypeofSloppyWide( |
+ const interpreter::BytecodeArrayIterator& iterator) { |
+ UNIMPLEMENTED(); |
+} |
+ |
+ |
+void BytecodeGraphBuilder::VisitLdaGlobalInsideTypeofStrictWide( |
+ const interpreter::BytecodeArrayIterator& iterator) { |
+ UNIMPLEMENTED(); |
+} |
+ |
+ |
void BytecodeGraphBuilder::VisitStaGlobalSloppy( |
const interpreter::BytecodeArrayIterator& iterator) { |
UNIMPLEMENTED(); |