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

Side by Side Diff: include/v8.h

Issue 2089533002: add use counters for __defineGetter__ failing (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: use appropriate copyright notice 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') | 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 5674 matching lines...) Expand 10 before | Expand all | Expand 10 after
5685 kArrayProtectorDirtied = 24, 5685 kArrayProtectorDirtied = 24,
5686 kArraySpeciesModified = 25, 5686 kArraySpeciesModified = 25,
5687 kArrayPrototypeConstructorModified = 26, 5687 kArrayPrototypeConstructorModified = 26,
5688 kArrayInstanceProtoModified = 27, 5688 kArrayInstanceProtoModified = 27,
5689 kArrayInstanceConstructorModified = 28, 5689 kArrayInstanceConstructorModified = 28,
5690 kLegacyFunctionDeclaration = 29, 5690 kLegacyFunctionDeclaration = 29,
5691 kRegExpPrototypeSourceGetter = 30, 5691 kRegExpPrototypeSourceGetter = 30,
5692 kRegExpPrototypeOldFlagGetter = 31, 5692 kRegExpPrototypeOldFlagGetter = 31,
5693 kDecimalWithLeadingZeroInStrictMode = 32, 5693 kDecimalWithLeadingZeroInStrictMode = 32,
5694 kLegacyDateParser = 33, 5694 kLegacyDateParser = 33,
5695 kDefineGetterOrSetterWouldThrow = 34,
5695 5696
5696 // If you add new values here, you'll also need to update Chromium's: 5697 // If you add new values here, you'll also need to update Chromium's:
jochen (gone - plz use gerrit) 2016/07/19 12:35:24 I want to draw your attention to this comment ^^^
5697 // UseCounter.h, V8PerIsolateData.cpp, histograms.xml 5698 // UseCounter.h, V8PerIsolateData.cpp, histograms.xml
5698 kUseCounterFeatureCount // This enum value must be last. 5699 kUseCounterFeatureCount // This enum value must be last.
5699 }; 5700 };
5700 5701
5701 typedef void (*UseCounterCallback)(Isolate* isolate, 5702 typedef void (*UseCounterCallback)(Isolate* isolate,
5702 UseCounterFeature feature); 5703 UseCounterFeature feature);
5703 5704
5704 5705
5705 /** 5706 /**
5706 * Creates a new isolate. Does not change the currently entered 5707 * Creates a new isolate. Does not change the currently entered
(...skipping 3166 matching lines...) Expand 10 before | Expand all | Expand 10 after
8873 */ 8874 */
8874 8875
8875 8876
8876 } // namespace v8 8877 } // namespace v8
8877 8878
8878 8879
8879 #undef TYPE_CHECK 8880 #undef TYPE_CHECK
8880 8881
8881 8882
8882 #endif // INCLUDE_V8_H_ 8883 #endif // INCLUDE_V8_H_
OLDNEW
« no previous file with comments | « no previous file | src/builtins.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698