Index: src/compiler/bytecode-graph-builder.cc |
diff --git a/src/compiler/bytecode-graph-builder.cc b/src/compiler/bytecode-graph-builder.cc |
index 2dea21504215f9b7a3be2035e629b9d907349430..2011d27572cf0b243d43118e47036a5d7404b6f9 100644 |
--- a/src/compiler/bytecode-graph-builder.cc |
+++ b/src/compiler/bytecode-graph-builder.cc |
@@ -315,6 +315,12 @@ void BytecodeGraphBuilder::VisitKeyedStoreICStrict( |
} |
+void BytecodeGraphBuilder::VisitKeyedStoreICGeneric( |
+ const interpreter::BytecodeArrayIterator& iterator) { |
+ UNIMPLEMENTED(); |
+} |
+ |
+ |
void BytecodeGraphBuilder::VisitPushContext( |
const interpreter::BytecodeArrayIterator& iterator) { |
UNIMPLEMENTED(); |
@@ -339,7 +345,7 @@ void BytecodeGraphBuilder::VisitCreateArrayLiteral( |
} |
-void BytecodeGraphBuilder::VisitKeyedStoreICGeneric( |
+void BytecodeGraphBuilder::VisitCreateObjectLiteral( |
const interpreter::BytecodeArrayIterator& iterator) { |
UNIMPLEMENTED(); |
} |
@@ -477,7 +483,13 @@ void BytecodeGraphBuilder::VisitTestInstanceOf( |
void BytecodeGraphBuilder::VisitToBoolean( |
- const interpreter::BytecodeArrayIterator& ToBoolean) { |
+ const interpreter::BytecodeArrayIterator& iterator) { |
+ UNIMPLEMENTED(); |
+} |
+ |
+ |
+void BytecodeGraphBuilder::VisitToName( |
+ const interpreter::BytecodeArrayIterator& iterator) { |
UNIMPLEMENTED(); |
} |