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

Side by Side Diff: include/v8.h

Issue 1633743003: Add UseCounters for some nonstandard JavaScript features (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase and reflow comment Created 4 years, 10 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 5439 matching lines...) Expand 10 before | Expand all | Expand 10 after
5450 kRegExpPrototypeToString = 12, 5450 kRegExpPrototypeToString = 12,
5451 kRegExpPrototypeUnicodeGetter = 13, 5451 kRegExpPrototypeUnicodeGetter = 13,
5452 kIntlV8Parse = 14, 5452 kIntlV8Parse = 14,
5453 kIntlPattern = 15, 5453 kIntlPattern = 15,
5454 kIntlResolved = 16, 5454 kIntlResolved = 16,
5455 kPromiseChain = 17, 5455 kPromiseChain = 17,
5456 kPromiseAccept = 18, 5456 kPromiseAccept = 18,
5457 kPromiseDefer = 19, 5457 kPromiseDefer = 19,
5458 kHtmlCommentInExternalScript = 20, 5458 kHtmlCommentInExternalScript = 20,
5459 kHtmlComment = 21, 5459 kHtmlComment = 21,
5460 kSloppyModeBlockScopedFunctionRedefinition = 22,
5461 kForInInitializer = 23,
5460 kUseCounterFeatureCount // This enum value must be last. 5462 kUseCounterFeatureCount // This enum value must be last.
5461 }; 5463 };
5462 5464
5463 typedef void (*UseCounterCallback)(Isolate* isolate, 5465 typedef void (*UseCounterCallback)(Isolate* isolate,
5464 UseCounterFeature feature); 5466 UseCounterFeature feature);
5465 5467
5466 5468
5467 /** 5469 /**
5468 * Creates a new isolate. Does not change the currently entered 5470 * Creates a new isolate. Does not change the currently entered
5469 * isolate. 5471 * isolate.
(...skipping 3053 matching lines...) Expand 10 before | Expand all | Expand 10 after
8523 */ 8525 */
8524 8526
8525 8527
8526 } // namespace v8 8528 } // namespace v8
8527 8529
8528 8530
8529 #undef TYPE_CHECK 8531 #undef TYPE_CHECK
8530 8532
8531 8533
8532 #endif // INCLUDE_V8_H_ 8534 #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