Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(518)

Side by Side Diff: include/v8.h

Issue 2050733004: Add UseCounter for Date.parse's legacy parse heuristics. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/builtins.cc » ('j') | src/dateparser-inl.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « no previous file | src/builtins.cc » ('j') | src/dateparser-inl.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698