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 | |
5473 // If you add new values here, you'll also need to update V8Initializer.cpp | |
5474 // in Blink. | |
adamk
2016/02/17 18:56:26
Maybe this should just say Chromium? Blink isn't r
| |
5472 kUseCounterFeatureCount // This enum value must be last. | 5475 kUseCounterFeatureCount // This enum value must be last. |
5473 }; | 5476 }; |
5474 | 5477 |
5475 typedef void (*UseCounterCallback)(Isolate* isolate, | 5478 typedef void (*UseCounterCallback)(Isolate* isolate, |
5476 UseCounterFeature feature); | 5479 UseCounterFeature feature); |
5477 | 5480 |
5478 | 5481 |
5479 /** | 5482 /** |
5480 * Creates a new isolate. Does not change the currently entered | 5483 * Creates a new isolate. Does not change the currently entered |
5481 * isolate. | 5484 * isolate. |
(...skipping 3053 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
8535 */ | 8538 */ |
8536 | 8539 |
8537 | 8540 |
8538 } // namespace v8 | 8541 } // namespace v8 |
8539 | 8542 |
8540 | 8543 |
8541 #undef TYPE_CHECK | 8544 #undef TYPE_CHECK |
8542 | 8545 |
8543 | 8546 |
8544 #endif // INCLUDE_V8_H_ | 8547 #endif // INCLUDE_V8_H_ |
OLD | NEW |