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

Side by Side Diff: include/v8.h

Issue 2034083002: Don't compile functions in a context the caller doesn't have access to (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: updates Created 4 years, 5 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 5714 matching lines...) Expand 10 before | Expand all | Expand 10 after
5725 kArraySpeciesModified = 25, 5725 kArraySpeciesModified = 25,
5726 kArrayPrototypeConstructorModified = 26, 5726 kArrayPrototypeConstructorModified = 26,
5727 kArrayInstanceProtoModified = 27, 5727 kArrayInstanceProtoModified = 27,
5728 kArrayInstanceConstructorModified = 28, 5728 kArrayInstanceConstructorModified = 28,
5729 kLegacyFunctionDeclaration = 29, 5729 kLegacyFunctionDeclaration = 29,
5730 kRegExpPrototypeSourceGetter = 30, 5730 kRegExpPrototypeSourceGetter = 30,
5731 kRegExpPrototypeOldFlagGetter = 31, 5731 kRegExpPrototypeOldFlagGetter = 31,
5732 kDecimalWithLeadingZeroInStrictMode = 32, 5732 kDecimalWithLeadingZeroInStrictMode = 32,
5733 kLegacyDateParser = 33, 5733 kLegacyDateParser = 33,
5734 kDefineGetterOrSetterWouldThrow = 34, 5734 kDefineGetterOrSetterWouldThrow = 34,
5735 kFunctionConstructorReturnedUndefined = 35,
5735 5736
5736 // If you add new values here, you'll also need to update Chromium's: 5737 // If you add new values here, you'll also need to update Chromium's:
5737 // UseCounter.h, V8PerIsolateData.cpp, histograms.xml 5738 // UseCounter.h, V8PerIsolateData.cpp, histograms.xml
5738 kUseCounterFeatureCount // This enum value must be last. 5739 kUseCounterFeatureCount // This enum value must be last.
5739 }; 5740 };
5740 5741
5741 typedef void (*UseCounterCallback)(Isolate* isolate, 5742 typedef void (*UseCounterCallback)(Isolate* isolate,
5742 UseCounterFeature feature); 5743 UseCounterFeature feature);
5743 5744
5744 5745
(...skipping 3191 matching lines...) Expand 10 before | Expand all | Expand 10 after
8936 */ 8937 */
8937 8938
8938 8939
8939 } // namespace v8 8940 } // namespace v8
8940 8941
8941 8942
8942 #undef TYPE_CHECK 8943 #undef TYPE_CHECK
8943 8944
8944 8945
8945 #endif // INCLUDE_V8_H_ 8946 #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