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

Side by Side Diff: include/v8.h

Issue 1970333004: Revert of add UseCounters for NonOctalDecimalIntegerLiteral in strict mode (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,
5613 5612
5614 // If you add new values here, you'll also need to update Chromium's: 5613 // If you add new values here, you'll also need to update V8Initializer.cpp
5615 // UseCounter.h, V8PerIsolateData.cpp, histograms.xml 5614 // in Chromium.
5616 kUseCounterFeatureCount // This enum value must be last. 5615 kUseCounterFeatureCount // This enum value must be last.
5617 }; 5616 };
5618 5617
5619 typedef void (*UseCounterCallback)(Isolate* isolate, 5618 typedef void (*UseCounterCallback)(Isolate* isolate,
5620 UseCounterFeature feature); 5619 UseCounterFeature feature);
5621 5620
5622 5621
5623 /** 5622 /**
5624 * Creates a new isolate. Does not change the currently entered 5623 * Creates a new isolate. Does not change the currently entered
5625 * isolate. 5624 * isolate.
(...skipping 3080 matching lines...) Expand 10 before | Expand all | Expand 10 after
8706 */ 8705 */
8707 8706
8708 8707
8709 } // namespace v8 8708 } // namespace v8
8710 8709
8711 8710
8712 #undef TYPE_CHECK 8711 #undef TYPE_CHECK
8713 8712
8714 8713
8715 #endif // INCLUDE_V8_H_ 8714 #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