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

Side by Side Diff: include/v8.h

Issue 1016803002: Remove PropertyCell space (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 9 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 unified diff | Download patch
« no previous file with comments | « no previous file | src/api.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 /** \mainpage V8 API Reference Guide 5 /** \mainpage V8 API Reference Guide
6 * 6 *
7 * V8 is Google's open source JavaScript engine. 7 * V8 is Google's open source JavaScript engine.
8 * 8 *
9 * This set of documents provides reference material generated from the 9 * This set of documents provides reference material generated from the
10 * V8 header file, include/v8.h. 10 * V8 header file, include/v8.h.
(...skipping 6601 matching lines...) Expand 10 before | Expand all | Expand 10 after
6612 static const int kNodeStateMask = 0x7; 6612 static const int kNodeStateMask = 0x7;
6613 static const int kNodeStateIsWeakValue = 2; 6613 static const int kNodeStateIsWeakValue = 2;
6614 static const int kNodeStateIsPendingValue = 3; 6614 static const int kNodeStateIsPendingValue = 3;
6615 static const int kNodeStateIsNearDeathValue = 4; 6615 static const int kNodeStateIsNearDeathValue = 4;
6616 static const int kNodeIsIndependentShift = 3; 6616 static const int kNodeIsIndependentShift = 3;
6617 static const int kNodeIsPartiallyDependentShift = 4; 6617 static const int kNodeIsPartiallyDependentShift = 4;
6618 6618
6619 static const int kJSObjectType = 0xbd; 6619 static const int kJSObjectType = 0xbd;
6620 static const int kFirstNonstringType = 0x80; 6620 static const int kFirstNonstringType = 0x80;
6621 static const int kOddballType = 0x83; 6621 static const int kOddballType = 0x83;
6622 static const int kForeignType = 0x88; 6622 static const int kForeignType = 0x87;
6623 6623
6624 static const int kUndefinedOddballKind = 5; 6624 static const int kUndefinedOddballKind = 5;
6625 static const int kNullOddballKind = 3; 6625 static const int kNullOddballKind = 3;
6626 6626
6627 static const uint32_t kNumIsolateDataSlots = 4; 6627 static const uint32_t kNumIsolateDataSlots = 4;
6628 6628
6629 V8_EXPORT static void CheckInitializedImpl(v8::Isolate* isolate); 6629 V8_EXPORT static void CheckInitializedImpl(v8::Isolate* isolate);
6630 V8_INLINE static void CheckInitialized(v8::Isolate* isolate) { 6630 V8_INLINE static void CheckInitialized(v8::Isolate* isolate) {
6631 #ifdef V8_ENABLE_CHECKS 6631 #ifdef V8_ENABLE_CHECKS
6632 CheckInitializedImpl(isolate); 6632 CheckInitializedImpl(isolate);
(...skipping 1303 matching lines...) Expand 10 before | Expand all | Expand 10 after
7936 */ 7936 */
7937 7937
7938 7938
7939 } // namespace v8 7939 } // namespace v8
7940 7940
7941 7941
7942 #undef TYPE_CHECK 7942 #undef TYPE_CHECK
7943 7943
7944 7944
7945 #endif // V8_H_ 7945 #endif // V8_H_
OLDNEW
« no previous file with comments | « no previous file | src/api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698