Index: src/compiler/bytecode-graph-builder.cc |
diff --git a/src/compiler/bytecode-graph-builder.cc b/src/compiler/bytecode-graph-builder.cc |
index 41344d0c6a993549300584b8ddfe7ecb3d0b3c64..4a34d5642e33520b1298ebeb70f1509c2fc1e43c 100644 |
--- a/src/compiler/bytecode-graph-builder.cc |
+++ b/src/compiler/bytecode-graph-builder.cc |
@@ -487,6 +487,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)); |