| Index: src/compiler/bytecode-graph-builder.cc
|
| diff --git a/src/compiler/bytecode-graph-builder.cc b/src/compiler/bytecode-graph-builder.cc
|
| index a1676019b9cba6a01582a6ff426e43ebe5cd816d..6c4a77a43df2d68886222d72f9743f6bfd277401 100644
|
| --- a/src/compiler/bytecode-graph-builder.cc
|
| +++ b/src/compiler/bytecode-graph-builder.cc
|
| @@ -658,6 +658,24 @@ void BytecodeGraphBuilder::VisitReturn(
|
| }
|
|
|
|
|
| +void BytecodeGraphBuilder::VisitForInPrepare(
|
| + const interpreter::BytecodeArrayIterator& iterator) {
|
| + UNIMPLEMENTED();
|
| +}
|
| +
|
| +
|
| +void BytecodeGraphBuilder::VisitForInNext(
|
| + const interpreter::BytecodeArrayIterator& iterator) {
|
| + UNIMPLEMENTED();
|
| +}
|
| +
|
| +
|
| +void BytecodeGraphBuilder::VisitForInDone(
|
| + const interpreter::BytecodeArrayIterator& iterator) {
|
| + UNIMPLEMENTED();
|
| +}
|
| +
|
| +
|
| Node** BytecodeGraphBuilder::EnsureInputBufferSize(int size) {
|
| if (size > input_buffer_size_) {
|
| size = size + kInputBufferSizeIncrement + input_buffer_size_;
|
|
|