| Index: src/interpreter/bytecode-array-builder.cc
|
| diff --git a/src/interpreter/bytecode-array-builder.cc b/src/interpreter/bytecode-array-builder.cc
|
| index 6caae0290c0bc238ce4fbc103be53bacd7e264a6..85ca46b2e0a4767e08f0cbca900efa3b3024bdb3 100644
|
| --- a/src/interpreter/bytecode-array-builder.cc
|
| +++ b/src/interpreter/bytecode-array-builder.cc
|
| @@ -338,6 +338,11 @@ BytecodeArrayBuilder& BytecodeArrayBuilder::CreateClosure(size_t entry,
|
| return *this;
|
| }
|
|
|
| +BytecodeArrayBuilder& BytecodeArrayBuilder::CreateBlockContext(size_t entry) {
|
| + Output(Bytecode::kCreateBlockContext, UnsignedOperand(entry));
|
| + return *this;
|
| +}
|
| +
|
| BytecodeArrayBuilder& BytecodeArrayBuilder::CreateFunctionContext(int slots) {
|
| Output(Bytecode::kCreateFunctionContext, UnsignedOperand(slots));
|
| return *this;
|
|
|