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

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: 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') | src/d8.cc » ('J')
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 5670 matching lines...) Expand 10 before | Expand all | Expand 10 after
5681 kForInInitializer = 23, 5681 kForInInitializer = 23,
5682 kArrayProtectorDirtied = 24, 5682 kArrayProtectorDirtied = 24,
5683 kArraySpeciesModified = 25, 5683 kArraySpeciesModified = 25,
5684 kArrayPrototypeConstructorModified = 26, 5684 kArrayPrototypeConstructorModified = 26,
5685 kArrayInstanceProtoModified = 27, 5685 kArrayInstanceProtoModified = 27,
5686 kArrayInstanceConstructorModified = 28, 5686 kArrayInstanceConstructorModified = 28,
5687 kLegacyFunctionDeclaration = 29, 5687 kLegacyFunctionDeclaration = 29,
5688 kRegExpPrototypeSourceGetter = 30, 5688 kRegExpPrototypeSourceGetter = 30,
5689 kRegExpPrototypeOldFlagGetter = 31, 5689 kRegExpPrototypeOldFlagGetter = 31,
5690 kDecimalWithLeadingZeroInStrictMode = 32, 5690 kDecimalWithLeadingZeroInStrictMode = 32,
5691 kFunctionConstructorReturnedUndefined = 33,
5691 5692
5692 // If you add new values here, you'll also need to update Chromium's: 5693 // If you add new values here, you'll also need to update Chromium's:
5693 // UseCounter.h, V8PerIsolateData.cpp, histograms.xml 5694 // UseCounter.h, V8PerIsolateData.cpp, histograms.xml
5694 kUseCounterFeatureCount // This enum value must be last. 5695 kUseCounterFeatureCount // This enum value must be last.
5695 }; 5696 };
5696 5697
5697 typedef void (*UseCounterCallback)(Isolate* isolate, 5698 typedef void (*UseCounterCallback)(Isolate* isolate,
5698 UseCounterFeature feature); 5699 UseCounterFeature feature);
5699 5700
5700 5701
(...skipping 3102 matching lines...) Expand 10 before | Expand all | Expand 10 after
8803 */ 8804 */
8804 8805
8805 8806
8806 } // namespace v8 8807 } // namespace v8
8807 8808
8808 8809
8809 #undef TYPE_CHECK 8810 #undef TYPE_CHECK
8810 8811
8811 8812
8812 #endif // INCLUDE_V8_H_ 8813 #endif // INCLUDE_V8_H_
OLDNEW
« no previous file with comments | « no previous file | src/builtins.cc » ('j') | src/d8.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698