Index: src/interpreter/bytecode-array-builder.h |
diff --git a/src/interpreter/bytecode-array-builder.h b/src/interpreter/bytecode-array-builder.h |
index 04980193a993c26bb13589b5b3e031bf639545a0..d1ac53f5568f9949b1d9dff4f42db429d6a7736d 100644 |
--- a/src/interpreter/bytecode-array-builder.h |
+++ b/src/interpreter/bytecode-array-builder.h |
@@ -79,6 +79,7 @@ class BytecodeArrayBuilder { |
BytecodeArrayBuilder& LoadTheHole(); |
BytecodeArrayBuilder& LoadTrue(); |
BytecodeArrayBuilder& LoadFalse(); |
+ BytecodeArrayBuilder& LoadBooleanConstant(bool value); |
// Global loads to the accumulator and stores from the accumulator. |
BytecodeArrayBuilder& LoadGlobal(size_t name_index, int feedback_slot, |
@@ -285,6 +286,7 @@ class BytecodeArrayBuilder { |
ZoneSet<int> free_temporaries_; |
+ class PreviousBytecodeHelper; |
friend class TemporaryRegisterScope; |
DISALLOW_COPY_AND_ASSIGN(BytecodeArrayBuilder); |
}; |