JSValueMakeSymbol top-level property

JSValueRef Function(JSContextRef ctx, JSStringRef description) JSValueMakeSymbol
final

MacOS 10.15, iOS 13.0 Creates a JavaScript value of the symbol type. ctx The execution context to use. description A description of the newly created symbol value. @result A unique JSValue of the symbol type, whose description matches the one provided.

Implementation

final JSValueRef Function(JSContextRef ctx, JSStringRef description) JSValueMakeSymbol =
    jscLib.lookup<NativeFunction<JSValueRef Function(JSContextRef ctx, JSStringRef description)>>('JSValueMakeSymbol').asFunction();