| 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 5117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5128 /** | 5128 /** |
| 5129 * Types of garbage collections that can be requested via | 5129 * Types of garbage collections that can be requested via |
| 5130 * RequestGarbageCollectionForTesting. | 5130 * RequestGarbageCollectionForTesting. |
| 5131 */ | 5131 */ |
| 5132 enum GarbageCollectionType { | 5132 enum GarbageCollectionType { |
| 5133 kFullGarbageCollection, | 5133 kFullGarbageCollection, |
| 5134 kMinorGarbageCollection | 5134 kMinorGarbageCollection |
| 5135 }; | 5135 }; |
| 5136 | 5136 |
| 5137 /** | 5137 /** |
| 5138 * Features reported via the SetUseCounterCallback callback. Do not chang | 5138 * Features reported via the SetUseCounterCallback callback. Do not change |
| 5139 * assigned numbers of existing items; add new features to the end of this | 5139 * assigned numbers of existing items; add new features to the end of this |
| 5140 * list. | 5140 * list. |
| 5141 */ | 5141 */ |
| 5142 enum UseCounterFeature { | 5142 enum UseCounterFeature { |
| 5143 kUseAsm = 0, | 5143 kUseAsm = 0, |
| 5144 kBreakIterator = 1, | 5144 kBreakIterator = 1, |
| 5145 kLegacyConst = 2, | 5145 kLegacyConst = 2, |
| 5146 kUseCounterFeatureCount // This enum value must be last. | 5146 kUseCounterFeatureCount // This enum value must be last. |
| 5147 }; | 5147 }; |
| 5148 | 5148 |
| (...skipping 2908 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8057 */ | 8057 */ |
| 8058 | 8058 |
| 8059 | 8059 |
| 8060 } // namespace v8 | 8060 } // namespace v8 |
| 8061 | 8061 |
| 8062 | 8062 |
| 8063 #undef TYPE_CHECK | 8063 #undef TYPE_CHECK |
| 8064 | 8064 |
| 8065 | 8065 |
| 8066 #endif // V8_H_ | 8066 #endif // V8_H_ |
| OLD | NEW |