Revision: 11308 Author: [email protected] Date: Fri Apr 13 02:58:29 2012 Log: Fix several ancient presubmit failures.
[email protected] Review URL: https://chromiumcodereview.appspot.com/10038046 http://code.google.com/p/v8/source/detail?r=11308 Modified: /branches/bleeding_edge/include/v8.h /branches/bleeding_edge/src/arguments.h ======================================= --- /branches/bleeding_edge/include/v8.h Fri Apr 13 02:38:00 2012 +++ /branches/bleeding_edge/include/v8.h Fri Apr 13 02:58:29 2012 @@ -1969,6 +1969,7 @@ inline bool IsConstructCall() const; inline Local<Value> Data() const; inline Isolate* GetIsolate() const; + private: static const int kIsolateIndex = 0; static const int kDataIndex = -1; @@ -1999,6 +2000,7 @@ inline Local<Value> Data() const; inline Local<Object> This() const; inline Local<Object> Holder() const; + private: internal::Object** args_; }; ======================================= --- /branches/bleeding_edge/src/arguments.h Fri Apr 13 02:38:00 2012 +++ /branches/bleeding_edge/src/arguments.h Fri Apr 13 02:58:29 2012 @@ -108,6 +108,7 @@ void IterateInstance(ObjectVisitor* v); Object** end() { return values_ + ARRAY_SIZE(values_) - 1; } + private: Object* values_[4]; }; -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
