| 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 2148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2159 * Returns true if this value is a WeakMap. | 2159 * Returns true if this value is a WeakMap. |
| 2160 */ | 2160 */ |
| 2161 bool IsWeakMap() const; | 2161 bool IsWeakMap() const; |
| 2162 | 2162 |
| 2163 /** | 2163 /** |
| 2164 * Returns true if this value is a WeakSet. | 2164 * Returns true if this value is a WeakSet. |
| 2165 */ | 2165 */ |
| 2166 bool IsWeakSet() const; | 2166 bool IsWeakSet() const; |
| 2167 | 2167 |
| 2168 /** | 2168 /** |
| 2169 * Returns true if this value is a WeakRef. |
| 2170 */ |
| 2171 bool IsWeakRef() const; |
| 2172 |
| 2173 /** |
| 2169 * Returns true if this value is an ArrayBuffer. | 2174 * Returns true if this value is an ArrayBuffer. |
| 2170 */ | 2175 */ |
| 2171 bool IsArrayBuffer() const; | 2176 bool IsArrayBuffer() const; |
| 2172 | 2177 |
| 2173 /** | 2178 /** |
| 2174 * Returns true if this value is an ArrayBufferView. | 2179 * Returns true if this value is an ArrayBufferView. |
| 2175 */ | 2180 */ |
| 2176 bool IsArrayBufferView() const; | 2181 bool IsArrayBufferView() const; |
| 2177 | 2182 |
| 2178 /** | 2183 /** |
| (...skipping 7893 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 10072 */ | 10077 */ |
| 10073 | 10078 |
| 10074 | 10079 |
| 10075 } // namespace v8 | 10080 } // namespace v8 |
| 10076 | 10081 |
| 10077 | 10082 |
| 10078 #undef TYPE_CHECK | 10083 #undef TYPE_CHECK |
| 10079 | 10084 |
| 10080 | 10085 |
| 10081 #endif // INCLUDE_V8_H_ | 10086 #endif // INCLUDE_V8_H_ |
| OLD | NEW |