OLD | NEW |
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 5451 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5462 kIntlV8Parse = 14, | 5462 kIntlV8Parse = 14, |
5463 kIntlPattern = 15, | 5463 kIntlPattern = 15, |
5464 kIntlResolved = 16, | 5464 kIntlResolved = 16, |
5465 kPromiseChain = 17, | 5465 kPromiseChain = 17, |
5466 kPromiseAccept = 18, | 5466 kPromiseAccept = 18, |
5467 kPromiseDefer = 19, | 5467 kPromiseDefer = 19, |
5468 kHtmlCommentInExternalScript = 20, | 5468 kHtmlCommentInExternalScript = 20, |
5469 kHtmlComment = 21, | 5469 kHtmlComment = 21, |
5470 kSloppyModeBlockScopedFunctionRedefinition = 22, | 5470 kSloppyModeBlockScopedFunctionRedefinition = 22, |
5471 kForInInitializer = 23, | 5471 kForInInitializer = 23, |
| 5472 kArrayProtectorDirtied = 24, |
| 5473 kArraySpeciesModified = 25, |
| 5474 kArrayPrototypeConstructorModified = 26, |
| 5475 kArrayInstanceProtoModified = 27, |
| 5476 kArrayInstanceConstructorModified = 28, |
5472 | 5477 |
5473 // If you add new values here, you'll also need to update V8Initializer.cpp | 5478 // If you add new values here, you'll also need to update V8Initializer.cpp |
5474 // in Chromium. | 5479 // in Chromium. |
5475 kUseCounterFeatureCount // This enum value must be last. | 5480 kUseCounterFeatureCount // This enum value must be last. |
5476 }; | 5481 }; |
5477 | 5482 |
5478 typedef void (*UseCounterCallback)(Isolate* isolate, | 5483 typedef void (*UseCounterCallback)(Isolate* isolate, |
5479 UseCounterFeature feature); | 5484 UseCounterFeature feature); |
5480 | 5485 |
5481 | 5486 |
(...skipping 3056 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
8538 */ | 8543 */ |
8539 | 8544 |
8540 | 8545 |
8541 } // namespace v8 | 8546 } // namespace v8 |
8542 | 8547 |
8543 | 8548 |
8544 #undef TYPE_CHECK | 8549 #undef TYPE_CHECK |
8545 | 8550 |
8546 | 8551 |
8547 #endif // INCLUDE_V8_H_ | 8552 #endif // INCLUDE_V8_H_ |
OLD | NEW |