| OLD | NEW |
| 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 3753 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3764 * this template. | 3764 * this template. |
| 3765 */ | 3765 */ |
| 3766 int InternalFieldCount(); | 3766 int InternalFieldCount(); |
| 3767 | 3767 |
| 3768 /** | 3768 /** |
| 3769 * Sets the number of internal fields for objects generated from | 3769 * Sets the number of internal fields for objects generated from |
| 3770 * this template. | 3770 * this template. |
| 3771 */ | 3771 */ |
| 3772 void SetInternalFieldCount(int value); | 3772 void SetInternalFieldCount(int value); |
| 3773 | 3773 |
| 3774 /** |
| 3775 * Unset the flag of InterceptorInfo for interceptor real name property |
| 3776 * Default: Interceptor with all properties |
| 3777 */ |
| 3778 void UninterceptorRealName(bool unset); |
| 3779 |
| 3780 |
| 3774 private: | 3781 private: |
| 3775 ObjectTemplate(); | 3782 ObjectTemplate(); |
| 3776 static Local<ObjectTemplate> New(internal::Isolate* isolate, | 3783 static Local<ObjectTemplate> New(internal::Isolate* isolate, |
| 3777 Handle<FunctionTemplate> constructor); | 3784 Handle<FunctionTemplate> constructor); |
| 3778 friend class FunctionTemplate; | 3785 friend class FunctionTemplate; |
| 3779 }; | 3786 }; |
| 3780 | 3787 |
| 3781 | 3788 |
| 3782 /** | 3789 /** |
| 3783 * A Signature specifies which receivers and arguments are valid | 3790 * A Signature specifies which receivers and arguments are valid |
| (...skipping 3048 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6832 */ | 6839 */ |
| 6833 | 6840 |
| 6834 | 6841 |
| 6835 } // namespace v8 | 6842 } // namespace v8 |
| 6836 | 6843 |
| 6837 | 6844 |
| 6838 #undef TYPE_CHECK | 6845 #undef TYPE_CHECK |
| 6839 | 6846 |
| 6840 | 6847 |
| 6841 #endif // V8_H_ | 6848 #endif // V8_H_ |
| OLD | NEW |