| Index: src/interpreter/bytecodes.h
 | 
| diff --git a/src/interpreter/bytecodes.h b/src/interpreter/bytecodes.h
 | 
| index 9793740bda9d3e189ec7fe965c736ba9e884f60e..a168172f3ed32cd8627b006d8d3c9a5bd0714069 100644
 | 
| --- a/src/interpreter/bytecodes.h
 | 
| +++ b/src/interpreter/bytecodes.h
 | 
| @@ -248,6 +248,9 @@ namespace interpreter {
 | 
|    V(JumpIfUndefined, OperandType::kImm8)                                       \
 | 
|    V(JumpIfUndefinedConstant, OperandType::kIdx8)                               \
 | 
|    V(JumpIfUndefinedConstantWide, OperandType::kIdx16)                          \
 | 
| +  /* TODO(mythria): Replace with opcodes that throw on a hole */               \
 | 
| +  V(JumpIfHole, OperandType::kImm8)                                            \
 | 
| +  V(JumpIfNotHole, OperandType::kImm8)                                         \
 | 
|                                                                                 \
 | 
|    /* Complex flow control For..in */                                           \
 | 
|    V(ForInPrepare, OperandType::kRegOutTriple8)                                 \
 | 
| 
 |