Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(808)

Unified Diff: src/objects.h

Issue 6524006: Strict mode function entry (Function.prototype.call/apply) (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
};

Powered by Google App Engine
This is Rietveld 408576698