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

Side by Side Diff: include/v8.h

Issue 2622833002: WIP [esnext] implement async iteration proposal (Closed)
Patch Set: Created 3 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
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 8416 matching lines...) Expand 10 before | Expand all | Expand 10 after
8427 8427
8428 static const int kNodeClassIdOffset = 1 * kApiPointerSize; 8428 static const int kNodeClassIdOffset = 1 * kApiPointerSize;
8429 static const int kNodeFlagsOffset = 1 * kApiPointerSize + 3; 8429 static const int kNodeFlagsOffset = 1 * kApiPointerSize + 3;
8430 static const int kNodeStateMask = 0x7; 8430 static const int kNodeStateMask = 0x7;
8431 static const int kNodeStateIsWeakValue = 2; 8431 static const int kNodeStateIsWeakValue = 2;
8432 static const int kNodeStateIsPendingValue = 3; 8432 static const int kNodeStateIsPendingValue = 3;
8433 static const int kNodeStateIsNearDeathValue = 4; 8433 static const int kNodeStateIsNearDeathValue = 4;
8434 static const int kNodeIsIndependentShift = 3; 8434 static const int kNodeIsIndependentShift = 3;
8435 static const int kNodeIsActiveShift = 4; 8435 static const int kNodeIsActiveShift = 4;
8436 8436
8437 static const int kJSApiObjectType = 0xbb; 8437 static const int kJSApiObjectType = 0xbc;
8438 static const int kJSObjectType = 0xbc; 8438 static const int kJSObjectType = 0xbd;
8439 static const int kFirstNonstringType = 0x80; 8439 static const int kFirstNonstringType = 0x80;
8440 static const int kOddballType = 0x83; 8440 static const int kOddballType = 0x83;
8441 static const int kForeignType = 0x87; 8441 static const int kForeignType = 0x87;
8442 8442
8443 static const int kUndefinedOddballKind = 5; 8443 static const int kUndefinedOddballKind = 5;
8444 static const int kNullOddballKind = 3; 8444 static const int kNullOddballKind = 3;
8445 8445
8446 static const uint32_t kNumIsolateDataSlots = 4; 8446 static const uint32_t kNumIsolateDataSlots = 4;
8447 8447
8448 V8_EXPORT static void CheckInitializedImpl(v8::Isolate* isolate); 8448 V8_EXPORT static void CheckInitializedImpl(v8::Isolate* isolate);
(...skipping 1351 matching lines...) Expand 10 before | Expand all | Expand 10 after
9800 */ 9800 */
9801 9801
9802 9802
9803 } // namespace v8 9803 } // namespace v8
9804 9804
9805 9805
9806 #undef TYPE_CHECK 9806 #undef TYPE_CHECK
9807 9807
9808 9808
9809 #endif // INCLUDE_V8_H_ 9809 #endif // INCLUDE_V8_H_
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | src/arm/macro-assembler-arm.h » ('j') | src/builtins/builtins-async.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698