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

Side by Side Diff: include/v8.h

Issue 1969203004: Add UseCounter for decimal with leading zero. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 7 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/parsing/parser.cc » ('j') | no next file with comments »
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 5591 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 Chromium's:
5614 // in Chromium. 5615 // UseCounter.h, V8PerIsolateData.cpp, histograms.xml
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
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_
OLDNEW
« no previous file with comments | « no previous file | src/parsing/parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698