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 5591 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
5602 kSloppyModeBlockScopedFunctionRedefinition = 22, | 5602 kSloppyModeBlockScopedFunctionRedefinition = 22, |
5603 kForInInitializer = 23, | 5603 kForInInitializer = 23, |
5604 kArrayProtectorDirtied = 24, | 5604 kArrayProtectorDirtied = 24, |
5605 kArraySpeciesModified = 25, | 5605 kArraySpeciesModified = 25, |
5606 kArrayPrototypeConstructorModified = 26, | 5606 kArrayPrototypeConstructorModified = 26, |
5607 kArrayInstanceProtoModified = 27, | 5607 kArrayInstanceProtoModified = 27, |
5608 kArrayInstanceConstructorModified = 28, | 5608 kArrayInstanceConstructorModified = 28, |
5609 kLegacyFunctionDeclaration = 29, | 5609 kLegacyFunctionDeclaration = 29, |
5610 kRegExpPrototypeSourceGetter = 30, | 5610 kRegExpPrototypeSourceGetter = 30, |
5611 kRegExpPrototypeOldFlagGetter = 31, | 5611 kRegExpPrototypeOldFlagGetter = 31, |
5612 kDecimalWithLeadingZeroInStrictMode = 32, | |
5612 | 5613 |
5613 // If you add new values here, you'll also need to update V8Initializer.cpp | 5614 // If you add new values here, you'll also need to update UseCounter.h |
5614 // in Chromium. | 5615 // and V8PerIsolateData.cpp in Chromium. |
Dan Ehrenberg
2016/05/11 00:36:57
...and histogram.xml (see https://codereview.chrom
| |
5615 kUseCounterFeatureCount // This enum value must be last. | 5616 kUseCounterFeatureCount // This enum value must be last. |
5616 }; | 5617 }; |
5617 | 5618 |
5618 typedef void (*UseCounterCallback)(Isolate* isolate, | 5619 typedef void (*UseCounterCallback)(Isolate* isolate, |
5619 UseCounterFeature feature); | 5620 UseCounterFeature feature); |
5620 | 5621 |
5621 | 5622 |
5622 /** | 5623 /** |
5623 * Creates a new isolate. Does not change the currently entered | 5624 * Creates a new isolate. Does not change the currently entered |
5624 * isolate. | 5625 * isolate. |
(...skipping 3080 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
8705 */ | 8706 */ |
8706 | 8707 |
8707 | 8708 |
8708 } // namespace v8 | 8709 } // namespace v8 |
8709 | 8710 |
8710 | 8711 |
8711 #undef TYPE_CHECK | 8712 #undef TYPE_CHECK |
8712 | 8713 |
8713 | 8714 |
8714 #endif // INCLUDE_V8_H_ | 8715 #endif // INCLUDE_V8_H_ |
OLD | NEW |