Index: src/compiler/bytecode-graph-builder.cc |
diff --git a/src/compiler/bytecode-graph-builder.cc b/src/compiler/bytecode-graph-builder.cc |
index 96c1415c5fbf5168b00d0b76ca61b1ab65a0c80f..785e3183e0929383b54be940b6bae130ad6148a3 100644 |
--- a/src/compiler/bytecode-graph-builder.cc |
+++ b/src/compiler/bytecode-graph-builder.cc |
@@ -488,6 +488,30 @@ void BytecodeGraphBuilder::VisitStaContextSlot( |
} |
+void BytecodeGraphBuilder::VisitLdaLookupSlot( |
+ const interpreter::BytecodeArrayIterator& iterator) { |
+ UNIMPLEMENTED(); |
+} |
+ |
+ |
+void BytecodeGraphBuilder::VisitLdaLookupSlotInsideTypeof( |
+ const interpreter::BytecodeArrayIterator& iterator) { |
+ UNIMPLEMENTED(); |
+} |
+ |
+ |
+void BytecodeGraphBuilder::VisitStaLookupSlotSloppy( |
+ const interpreter::BytecodeArrayIterator& iterator) { |
+ UNIMPLEMENTED(); |
+} |
+ |
+ |
+void BytecodeGraphBuilder::VisitStaLookupSlotStrict( |
+ const interpreter::BytecodeArrayIterator& iterator) { |
+ UNIMPLEMENTED(); |
+} |
+ |
+ |
void BytecodeGraphBuilder::BuildNamedLoad( |
const interpreter::BytecodeArrayIterator& iterator) { |
Node* object = environment()->LookupRegister(iterator.GetRegisterOperand(0)); |