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

Side by Side Diff: include/v8.h

Issue 1762423002: Add UseCounters for various RegExp compatibility issues (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 9 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/js/macros.py » ('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 5528 matching lines...) Expand 10 before | Expand all | Expand 10 after
5539 kHtmlCommentInExternalScript = 20, 5539 kHtmlCommentInExternalScript = 20,
5540 kHtmlComment = 21, 5540 kHtmlComment = 21,
5541 kSloppyModeBlockScopedFunctionRedefinition = 22, 5541 kSloppyModeBlockScopedFunctionRedefinition = 22,
5542 kForInInitializer = 23, 5542 kForInInitializer = 23,
5543 kArrayProtectorDirtied = 24, 5543 kArrayProtectorDirtied = 24,
5544 kArraySpeciesModified = 25, 5544 kArraySpeciesModified = 25,
5545 kArrayPrototypeConstructorModified = 26, 5545 kArrayPrototypeConstructorModified = 26,
5546 kArrayInstanceProtoModified = 27, 5546 kArrayInstanceProtoModified = 27,
5547 kArrayInstanceConstructorModified = 28, 5547 kArrayInstanceConstructorModified = 28,
5548 kLegacyFunctionDeclaration = 29, 5548 kLegacyFunctionDeclaration = 29,
5549 kRegExpPrototypeSourceGetter = 30,
5550 kRegExpPrototypeOldFlagGetter = 31,
5549 5551
5550 // If you add new values here, you'll also need to update V8Initializer.cpp 5552 // If you add new values here, you'll also need to update V8Initializer.cpp
5551 // in Chromium. 5553 // in Chromium.
5552 kUseCounterFeatureCount // This enum value must be last. 5554 kUseCounterFeatureCount // This enum value must be last.
5553 }; 5555 };
5554 5556
5555 typedef void (*UseCounterCallback)(Isolate* isolate, 5557 typedef void (*UseCounterCallback)(Isolate* isolate,
5556 UseCounterFeature feature); 5558 UseCounterFeature feature);
5557 5559
5558 5560
(...skipping 3097 matching lines...) Expand 10 before | Expand all | Expand 10 after
8656 */ 8658 */
8657 8659
8658 8660
8659 } // namespace v8 8661 } // namespace v8
8660 8662
8661 8663
8662 #undef TYPE_CHECK 8664 #undef TYPE_CHECK
8663 8665
8664 8666
8665 #endif // INCLUDE_V8_H_ 8667 #endif // INCLUDE_V8_H_
OLDNEW
« no previous file with comments | « no previous file | src/js/macros.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698