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

Side by Side Diff: include/v8.h

Issue 2143893005: Reland "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/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 5718 matching lines...) Expand 10 before | Expand all | Expand 10 after
5729 kArraySpeciesModified = 25, 5729 kArraySpeciesModified = 25,
5730 kArrayPrototypeConstructorModified = 26, 5730 kArrayPrototypeConstructorModified = 26,
5731 kArrayInstanceProtoModified = 27, 5731 kArrayInstanceProtoModified = 27,
5732 kArrayInstanceConstructorModified = 28, 5732 kArrayInstanceConstructorModified = 28,
5733 kLegacyFunctionDeclaration = 29, 5733 kLegacyFunctionDeclaration = 29,
5734 kRegExpPrototypeSourceGetter = 30, 5734 kRegExpPrototypeSourceGetter = 30,
5735 kRegExpPrototypeOldFlagGetter = 31, 5735 kRegExpPrototypeOldFlagGetter = 31,
5736 kDecimalWithLeadingZeroInStrictMode = 32, 5736 kDecimalWithLeadingZeroInStrictMode = 32,
5737 kLegacyDateParser = 33, 5737 kLegacyDateParser = 33,
5738 kDefineGetterOrSetterWouldThrow = 34, 5738 kDefineGetterOrSetterWouldThrow = 34,
5739 kFunctionConstructorReturnedUndefined = 35,
5739 5740
5740 // If you add new values here, you'll also need to update Chromium's: 5741 // If you add new values here, you'll also need to update Chromium's:
5741 // UseCounter.h, V8PerIsolateData.cpp, histograms.xml 5742 // UseCounter.h, V8PerIsolateData.cpp, histograms.xml
5742 kUseCounterFeatureCount // This enum value must be last. 5743 kUseCounterFeatureCount // This enum value must be last.
5743 }; 5744 };
5744 5745
5745 typedef void (*UseCounterCallback)(Isolate* isolate, 5746 typedef void (*UseCounterCallback)(Isolate* isolate,
5746 UseCounterFeature feature); 5747 UseCounterFeature feature);
5747 5748
5748 5749
(...skipping 3191 matching lines...) Expand 10 before | Expand all | Expand 10 after
8940 */ 8941 */
8941 8942
8942 8943
8943 } // namespace v8 8944 } // namespace v8
8944 8945
8945 8946
8946 #undef TYPE_CHECK 8947 #undef TYPE_CHECK
8947 8948
8948 8949
8949 #endif // INCLUDE_V8_H_ 8950 #endif // INCLUDE_V8_H_
OLDNEW
« no previous file with comments | « no previous file | src/builtins/builtins.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698