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

Side by Side Diff: include/v8.h

Issue 1600353003: [runtime] remove left-over distinction between AccessorInfo and ExecutableAccessorInfo (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 11 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/accessors.h » ('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 7114 matching lines...) Expand 10 before | Expand all | Expand 10 after
7125 static const int kNodeClassIdOffset = 1 * kApiPointerSize; 7125 static const int kNodeClassIdOffset = 1 * kApiPointerSize;
7126 static const int kNodeFlagsOffset = 1 * kApiPointerSize + 3; 7126 static const int kNodeFlagsOffset = 1 * kApiPointerSize + 3;
7127 static const int kNodeStateMask = 0x7; 7127 static const int kNodeStateMask = 0x7;
7128 static const int kNodeStateIsWeakValue = 2; 7128 static const int kNodeStateIsWeakValue = 2;
7129 static const int kNodeStateIsPendingValue = 3; 7129 static const int kNodeStateIsPendingValue = 3;
7130 static const int kNodeStateIsNearDeathValue = 4; 7130 static const int kNodeStateIsNearDeathValue = 4;
7131 static const int kNodeIsIndependentShift = 3; 7131 static const int kNodeIsIndependentShift = 3;
7132 static const int kNodeIsPartiallyDependentShift = 4; 7132 static const int kNodeIsPartiallyDependentShift = 4;
7133 static const int kNodeIsActiveShift = 4; 7133 static const int kNodeIsActiveShift = 4;
7134 7134
7135 static const int kJSObjectType = 0xb7; 7135 static const int kJSObjectType = 0xb5;
7136 static const int kFirstNonstringType = 0x80; 7136 static const int kFirstNonstringType = 0x80;
7137 static const int kOddballType = 0x83; 7137 static const int kOddballType = 0x83;
7138 static const int kForeignType = 0x87; 7138 static const int kForeignType = 0x87;
7139 7139
7140 static const int kUndefinedOddballKind = 5; 7140 static const int kUndefinedOddballKind = 5;
7141 static const int kNullOddballKind = 3; 7141 static const int kNullOddballKind = 3;
7142 7142
7143 static const uint32_t kNumIsolateDataSlots = 4; 7143 static const uint32_t kNumIsolateDataSlots = 4;
7144 7144
7145 V8_EXPORT static void CheckInitializedImpl(v8::Isolate* isolate); 7145 V8_EXPORT static void CheckInitializedImpl(v8::Isolate* isolate);
(...skipping 1369 matching lines...) Expand 10 before | Expand all | Expand 10 after
8515 */ 8515 */
8516 8516
8517 8517
8518 } // namespace v8 8518 } // namespace v8
8519 8519
8520 8520
8521 #undef TYPE_CHECK 8521 #undef TYPE_CHECK
8522 8522
8523 8523
8524 #endif // INCLUDE_V8_H_ 8524 #endif // INCLUDE_V8_H_
OLDNEW
« no previous file with comments | « no previous file | src/accessors.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698