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 5427 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5438 kMarkDequeOverflow = 3, | 5438 kMarkDequeOverflow = 3, |
5439 kStoreBufferOverflow = 4, | 5439 kStoreBufferOverflow = 4, |
5440 kSlotsBufferOverflow = 5, | 5440 kSlotsBufferOverflow = 5, |
5441 kObjectObserve = 6, | 5441 kObjectObserve = 6, |
5442 kForcedGC = 7, | 5442 kForcedGC = 7, |
5443 kSloppyMode = 8, | 5443 kSloppyMode = 8, |
5444 kStrictMode = 9, | 5444 kStrictMode = 9, |
5445 kStrongMode = 10, | 5445 kStrongMode = 10, |
5446 kRegExpPrototypeStickyGetter = 11, | 5446 kRegExpPrototypeStickyGetter = 11, |
5447 kRegExpPrototypeToString = 12, | 5447 kRegExpPrototypeToString = 12, |
| 5448 kRegExpPrototypeUnicodeGetter = 13, |
| 5449 kIntlV8Parse = 14, |
| 5450 kIntlPattern = 15, |
| 5451 kIntlResolved = 16, |
| 5452 kPromiseChain = 17, |
| 5453 kPromiseAccept = 18, |
| 5454 kPromiseDefer = 19, |
5448 kUseCounterFeatureCount // This enum value must be last. | 5455 kUseCounterFeatureCount // This enum value must be last. |
5449 }; | 5456 }; |
5450 | 5457 |
5451 typedef void (*UseCounterCallback)(Isolate* isolate, | 5458 typedef void (*UseCounterCallback)(Isolate* isolate, |
5452 UseCounterFeature feature); | 5459 UseCounterFeature feature); |
5453 | 5460 |
5454 | 5461 |
5455 /** | 5462 /** |
5456 * Creates a new isolate. Does not change the currently entered | 5463 * Creates a new isolate. Does not change the currently entered |
5457 * isolate. | 5464 * isolate. |
(...skipping 3047 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
8505 */ | 8512 */ |
8506 | 8513 |
8507 | 8514 |
8508 } // namespace v8 | 8515 } // namespace v8 |
8509 | 8516 |
8510 | 8517 |
8511 #undef TYPE_CHECK | 8518 #undef TYPE_CHECK |
8512 | 8519 |
8513 | 8520 |
8514 #endif // INCLUDE_V8_H_ | 8521 #endif // INCLUDE_V8_H_ |
OLD | NEW |