Index: src/compiler/bytecode-graph-builder.cc |
diff --git a/src/compiler/bytecode-graph-builder.cc b/src/compiler/bytecode-graph-builder.cc |
index 3cae1469f2afb1170c4b4bf1bafb5a2e66df9d90..9df0f1e7af8c971094312172650a6009360a4bf8 100644 |
--- a/src/compiler/bytecode-graph-builder.cc |
+++ b/src/compiler/bytecode-graph-builder.cc |
@@ -249,6 +249,30 @@ void BytecodeGraphBuilder::VisitStar( |
} |
+void BytecodeGraphBuilder::VisitLdaGlobalSloppy( |
+ const interpreter::BytecodeArrayIterator& iterator) { |
+ UNIMPLEMENTED(); |
+} |
+ |
+ |
+void BytecodeGraphBuilder::VisitLdaGlobalStrict( |
+ const interpreter::BytecodeArrayIterator& iterator) { |
+ UNIMPLEMENTED(); |
+} |
+ |
+ |
+void BytecodeGraphBuilder::VisitStaGlobalSloppy( |
+ const interpreter::BytecodeArrayIterator& iterator) { |
+ UNIMPLEMENTED(); |
+} |
+ |
+ |
+void BytecodeGraphBuilder::VisitStaGlobalStrict( |
+ const interpreter::BytecodeArrayIterator& iterator) { |
+ UNIMPLEMENTED(); |
+} |
+ |
+ |
void BytecodeGraphBuilder::VisitLdaContextSlot( |
const interpreter::BytecodeArrayIterator& iterator) { |
UNIMPLEMENTED(); |