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 5718 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5729 kArraySpeciesModified = 25, | 5729 kArraySpeciesModified = 25, |
5730 kArrayPrototypeConstructorModified = 26, | 5730 kArrayPrototypeConstructorModified = 26, |
5731 kArrayInstanceProtoModified = 27, | 5731 kArrayInstanceProtoModified = 27, |
5732 kArrayInstanceConstructorModified = 28, | 5732 kArrayInstanceConstructorModified = 28, |
5733 kLegacyFunctionDeclaration = 29, | 5733 kLegacyFunctionDeclaration = 29, |
5734 kRegExpPrototypeSourceGetter = 30, | 5734 kRegExpPrototypeSourceGetter = 30, |
5735 kRegExpPrototypeOldFlagGetter = 31, | 5735 kRegExpPrototypeOldFlagGetter = 31, |
5736 kDecimalWithLeadingZeroInStrictMode = 32, | 5736 kDecimalWithLeadingZeroInStrictMode = 32, |
5737 kLegacyDateParser = 33, | 5737 kLegacyDateParser = 33, |
5738 kDefineGetterOrSetterWouldThrow = 34, | 5738 kDefineGetterOrSetterWouldThrow = 34, |
5739 kFunctionConstructorReturnedUndefined = 35, | |
5740 | 5739 |
5741 // If you add new values here, you'll also need to update Chromium's: | 5740 // If you add new values here, you'll also need to update Chromium's: |
5742 // UseCounter.h, V8PerIsolateData.cpp, histograms.xml | 5741 // UseCounter.h, V8PerIsolateData.cpp, histograms.xml |
5743 kUseCounterFeatureCount // This enum value must be last. | 5742 kUseCounterFeatureCount // This enum value must be last. |
5744 }; | 5743 }; |
5745 | 5744 |
5746 typedef void (*UseCounterCallback)(Isolate* isolate, | 5745 typedef void (*UseCounterCallback)(Isolate* isolate, |
5747 UseCounterFeature feature); | 5746 UseCounterFeature feature); |
5748 | 5747 |
5749 | 5748 |
(...skipping 3191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
8941 */ | 8940 */ |
8942 | 8941 |
8943 | 8942 |
8944 } // namespace v8 | 8943 } // namespace v8 |
8945 | 8944 |
8946 | 8945 |
8947 #undef TYPE_CHECK | 8946 #undef TYPE_CHECK |
8948 | 8947 |
8949 | 8948 |
8950 #endif // INCLUDE_V8_H_ | 8949 #endif // INCLUDE_V8_H_ |
OLD | NEW |