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

Side by Side Diff: include/v8.h

Issue 2226753002: [wasm] external serialization APIs (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 4 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/api.cc » ('j') | no next file with comments »
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 1934 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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_
OLDNEW
« no previous file with comments | « no previous file | src/api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698