Index: src/interpreter/bytecodes.h |
diff --git a/src/interpreter/bytecodes.h b/src/interpreter/bytecodes.h |
index 68ebec177474f099dbe6d083bd6cdf8cc5a6973a..9145c57ed93d6d9712471d89736f81cd9fa56ef4 100644 |
--- a/src/interpreter/bytecodes.h |
+++ b/src/interpreter/bytecodes.h |
@@ -583,6 +583,12 @@ class Bytecodes { |
DISALLOW_IMPLICIT_CONSTRUCTORS(Bytecodes); |
}; |
+class CreateObjectLiteralFlags { |
+ public: |
+ class FlagsBits : public BitField8<int, 0, 3> {}; |
+ class FastClonePropertiesCountBits : public BitField8<int, 3, 3> {}; |
+}; |
+ |
std::ostream& operator<<(std::ostream& os, const Bytecode& bytecode); |
std::ostream& operator<<(std::ostream& os, const AccumulatorUse& use); |
std::ostream& operator<<(std::ostream& os, const OperandScale& operand_scale); |