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 5393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5404 kBreakIterator = 1, | 5404 kBreakIterator = 1, |
5405 kLegacyConst = 2, | 5405 kLegacyConst = 2, |
5406 kMarkDequeOverflow = 3, | 5406 kMarkDequeOverflow = 3, |
5407 kStoreBufferOverflow = 4, | 5407 kStoreBufferOverflow = 4, |
5408 kSlotsBufferOverflow = 5, | 5408 kSlotsBufferOverflow = 5, |
5409 kObjectObserve = 6, | 5409 kObjectObserve = 6, |
5410 kForcedGC = 7, | 5410 kForcedGC = 7, |
5411 kSloppyMode = 8, | 5411 kSloppyMode = 8, |
5412 kStrictMode = 9, | 5412 kStrictMode = 9, |
5413 kStrongMode = 10, | 5413 kStrongMode = 10, |
5414 kRegExpPrototypeStickyGetter = 11, | |
5415 kRegExpPrototypeToString = 12, | |
5416 kUseCounterFeatureCount // This enum value must be last. | 5414 kUseCounterFeatureCount // This enum value must be last. |
5417 }; | 5415 }; |
5418 | 5416 |
5419 typedef void (*UseCounterCallback)(Isolate* isolate, | 5417 typedef void (*UseCounterCallback)(Isolate* isolate, |
5420 UseCounterFeature feature); | 5418 UseCounterFeature feature); |
5421 | 5419 |
5422 | 5420 |
5423 /** | 5421 /** |
5424 * Creates a new isolate. Does not change the currently entered | 5422 * Creates a new isolate. Does not change the currently entered |
5425 * isolate. | 5423 * isolate. |
(...skipping 3039 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
8465 */ | 8463 */ |
8466 | 8464 |
8467 | 8465 |
8468 } // namespace v8 | 8466 } // namespace v8 |
8469 | 8467 |
8470 | 8468 |
8471 #undef TYPE_CHECK | 8469 #undef TYPE_CHECK |
8472 | 8470 |
8473 | 8471 |
8474 #endif // INCLUDE_V8_H_ | 8472 #endif // INCLUDE_V8_H_ |
OLD | NEW |