Index: src/objects.h |
diff --git a/src/objects.h b/src/objects.h |
index 559ada63f41922bdb30efb209884a6b9a1280be3..f857d9a3c16a640940f02134e96bb043b1b4e089 100644 |
--- a/src/objects.h |
+++ b/src/objects.h |
@@ -4387,8 +4387,11 @@ class SharedFunctionInfo: public HeapObject { |
static const int kCodeAgeShift = 4; |
static const int kCodeAgeMask = 0x7; |
static const int kOptimizationDisabled = 7; |
+public: |
Mads Ager (chromium)
2011/02/15 08:09:31
I would rather make Builtins a friend or make them
Martin Maly
2011/02/15 19:18:43
Done.
|
+ // Used from builtins-<arch>.cc Generate_Function(Call/Apply). |
static const int kStrictModeFunction = 8; |
+private: |
DISALLOW_IMPLICIT_CONSTRUCTORS(SharedFunctionInfo); |
}; |