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 1934 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1945 * Returns true if this value is a SharedArrayBuffer. | 1945 * Returns true if this value is a SharedArrayBuffer. |
1946 * This is an experimental feature. | 1946 * This is an experimental feature. |
1947 */ | 1947 */ |
1948 bool IsSharedArrayBuffer() const; | 1948 bool IsSharedArrayBuffer() const; |
1949 | 1949 |
1950 /** | 1950 /** |
1951 * Returns true if this value is a JavaScript Proxy. | 1951 * Returns true if this value is a JavaScript Proxy. |
1952 */ | 1952 */ |
1953 bool IsProxy() const; | 1953 bool IsProxy() const; |
1954 | 1954 |
| 1955 bool IsWebAssemblyCompiledModule() const; |
1955 | 1956 |
1956 V8_WARN_UNUSED_RESULT MaybeLocal<Boolean> ToBoolean( | 1957 V8_WARN_UNUSED_RESULT MaybeLocal<Boolean> ToBoolean( |
1957 Local<Context> context) const; | 1958 Local<Context> context) const; |
1958 V8_WARN_UNUSED_RESULT MaybeLocal<Number> ToNumber( | 1959 V8_WARN_UNUSED_RESULT MaybeLocal<Number> ToNumber( |
1959 Local<Context> context) const; | 1960 Local<Context> context) const; |
1960 V8_WARN_UNUSED_RESULT MaybeLocal<String> ToString( | 1961 V8_WARN_UNUSED_RESULT MaybeLocal<String> ToString( |
1961 Local<Context> context) const; | 1962 Local<Context> context) const; |
1962 V8_WARN_UNUSED_RESULT MaybeLocal<String> ToDetailString( | 1963 V8_WARN_UNUSED_RESULT MaybeLocal<String> ToDetailString( |
1963 Local<Context> context) const; | 1964 Local<Context> context) const; |
1964 V8_WARN_UNUSED_RESULT MaybeLocal<Object> ToObject( | 1965 V8_WARN_UNUSED_RESULT MaybeLocal<Object> ToObject( |
(...skipping 7000 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
8965 */ | 8966 */ |
8966 | 8967 |
8967 | 8968 |
8968 } // namespace v8 | 8969 } // namespace v8 |
8969 | 8970 |
8970 | 8971 |
8971 #undef TYPE_CHECK | 8972 #undef TYPE_CHECK |
8972 | 8973 |
8973 | 8974 |
8974 #endif // INCLUDE_V8_H_ | 8975 #endif // INCLUDE_V8_H_ |
OLD | NEW |