Index: src/globals.h |
diff --git a/src/globals.h b/src/globals.h |
index 28daeba50f374638a6a2ce34cb5f113d3d4ae32d..c9b91d8603b8777822f7d3ce6de90c2fb170bb03 100644 |
--- a/src/globals.h |
+++ b/src/globals.h |
@@ -527,9 +527,11 @@ enum CallFunctionFlags { |
enum CallConstructorFlags { |
- NO_CALL_CONSTRUCTOR_FLAGS, |
+ NO_CALL_CONSTRUCTOR_FLAGS = 0, |
// The call target is cached in the instruction stream. |
- RECORD_CONSTRUCTOR_TARGET |
+ RECORD_CONSTRUCTOR_TARGET = 1, |
+ SUPER_CONSTRUCTOR_CALL = 1 << 1, |
+ SUPER_CALL_RECORD_TARGET = SUPER_CONSTRUCTOR_CALL | RECORD_CONSTRUCTOR_TARGET |
}; |