| 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 5663 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5674 kForInInitializer = 23, | 5674 kForInInitializer = 23, |
| 5675 kArrayProtectorDirtied = 24, | 5675 kArrayProtectorDirtied = 24, |
| 5676 kArraySpeciesModified = 25, | 5676 kArraySpeciesModified = 25, |
| 5677 kArrayPrototypeConstructorModified = 26, | 5677 kArrayPrototypeConstructorModified = 26, |
| 5678 kArrayInstanceProtoModified = 27, | 5678 kArrayInstanceProtoModified = 27, |
| 5679 kArrayInstanceConstructorModified = 28, | 5679 kArrayInstanceConstructorModified = 28, |
| 5680 kLegacyFunctionDeclaration = 29, | 5680 kLegacyFunctionDeclaration = 29, |
| 5681 kRegExpPrototypeSourceGetter = 30, | 5681 kRegExpPrototypeSourceGetter = 30, |
| 5682 kRegExpPrototypeOldFlagGetter = 31, | 5682 kRegExpPrototypeOldFlagGetter = 31, |
| 5683 kDecimalWithLeadingZeroInStrictMode = 32, | 5683 kDecimalWithLeadingZeroInStrictMode = 32, |
| 5684 kLegacyDateParser = 33, |
| 5684 | 5685 |
| 5685 // If you add new values here, you'll also need to update Chromium's: | 5686 // If you add new values here, you'll also need to update Chromium's: |
| 5686 // UseCounter.h, V8PerIsolateData.cpp, histograms.xml | 5687 // UseCounter.h, V8PerIsolateData.cpp, histograms.xml |
| 5687 kUseCounterFeatureCount // This enum value must be last. | 5688 kUseCounterFeatureCount // This enum value must be last. |
| 5688 }; | 5689 }; |
| 5689 | 5690 |
| 5690 typedef void (*UseCounterCallback)(Isolate* isolate, | 5691 typedef void (*UseCounterCallback)(Isolate* isolate, |
| 5691 UseCounterFeature feature); | 5692 UseCounterFeature feature); |
| 5692 | 5693 |
| 5693 | 5694 |
| (...skipping 3119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8813 */ | 8814 */ |
| 8814 | 8815 |
| 8815 | 8816 |
| 8816 } // namespace v8 | 8817 } // namespace v8 |
| 8817 | 8818 |
| 8818 | 8819 |
| 8819 #undef TYPE_CHECK | 8820 #undef TYPE_CHECK |
| 8820 | 8821 |
| 8821 | 8822 |
| 8822 #endif // INCLUDE_V8_H_ | 8823 #endif // INCLUDE_V8_H_ |
| OLD | NEW |