| Index: src/compiler/bytecode-graph-builder.cc
|
| diff --git a/src/compiler/bytecode-graph-builder.cc b/src/compiler/bytecode-graph-builder.cc
|
| index b2dc2c295680ede7fc3d3ba29ddf742b4ca5a1ba..d3825f6e695f85edec1a8b32a483f0e5d8c7666b 100644
|
| --- a/src/compiler/bytecode-graph-builder.cc
|
| +++ b/src/compiler/bytecode-graph-builder.cc
|
| @@ -338,6 +338,18 @@ void BytecodeGraphBuilder::VisitMod(
|
| }
|
|
|
|
|
| +void BytecodeGraphBuilder::VisitLogicalNot(
|
| + const interpreter::BytecodeArrayIterator& iterator) {
|
| + UNIMPLEMENTED();
|
| +}
|
| +
|
| +
|
| +void BytecodeGraphBuilder::VisitTypeOf(
|
| + const interpreter::BytecodeArrayIterator& iterator) {
|
| + UNIMPLEMENTED();
|
| +}
|
| +
|
| +
|
| void BytecodeGraphBuilder::VisitTestEqual(
|
| const interpreter::BytecodeArrayIterator& iterator) {
|
| UNIMPLEMENTED();
|
|
|