pub unsafe extern "C" fn JSValueMakeSymbol(
ctx: JSContextRef,
description: JSStringRef,
) -> JSValueRef
Expand description
Creates a JavaScript value of the symbol type.
ctx
: The execution context to use.description
: TheJSStringRef
to assign to the newly createdJSValueRef
.
Returns a JSValueRef
of the symbol
type, whose description matches the one provided.