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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 class SymbolObject; | 105 class SymbolObject; |
106 class Uint32; | 106 class Uint32; |
107 class Utils; | 107 class Utils; |
108 class Value; | 108 class Value; |
109 template <class T> class Local; | 109 template <class T> class Local; |
110 template <class T> | 110 template <class T> |
111 class MaybeLocal; | 111 class MaybeLocal; |
112 template <class T> class Eternal; | 112 template <class T> class Eternal; |
113 template<class T> class NonCopyablePersistentTraits; | 113 template<class T> class NonCopyablePersistentTraits; |
114 template<class T> class PersistentBase; | 114 template<class T> class PersistentBase; |
115 template<class T, | 115 template <class T, class M = NonCopyablePersistentTraits<T> > |
116 class M = NonCopyablePersistentTraits<T> > class Persistent; | 116 class Persistent; |
117 template <class T> | 117 template <class T> |
118 class Global; | 118 class Global; |
119 template<class K, class V, class T> class PersistentValueMap; | 119 template<class K, class V, class T> class PersistentValueMap; |
120 template <class K, class V, class T> | 120 template <class K, class V, class T> |
121 class PersistentValueMapBase; | 121 class PersistentValueMapBase; |
122 template <class K, class V, class T> | 122 template <class K, class V, class T> |
123 class GlobalValueMap; | 123 class GlobalValueMap; |
124 template<class V, class T> class PersistentValueVector; | 124 template<class V, class T> class PersistentValueVector; |
125 template<class T, class P> class WeakCallbackObject; | 125 template<class T, class P> class WeakCallbackObject; |
126 class FunctionTemplate; | 126 class FunctionTemplate; |
(...skipping 8220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
8347 */ | 8347 */ |
8348 | 8348 |
8349 | 8349 |
8350 } // namespace v8 | 8350 } // namespace v8 |
8351 | 8351 |
8352 | 8352 |
8353 #undef TYPE_CHECK | 8353 #undef TYPE_CHECK |
8354 | 8354 |
8355 | 8355 |
8356 #endif // V8_H_ | 8356 #endif // V8_H_ |
OLD | NEW |