Index: src/globals.h |
diff --git a/src/globals.h b/src/globals.h |
index 740ccf8431e306c66c0f8aefffa00740d1c00e19..bb9a417867e927a9c247b33eefc520ddb9655979 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 |
}; |