JS::PropertySpecNameIsSymbol

This article covers features introduced in SpiderMonkey 38

Determine if the given JSPropertySpec::name or JSFunctionSpec::name value is actually a symbol code and not a string.

Syntax

bool
JS::PropertySpecNameIsSymbol(const char *name);
Name Type Description
name const char * The pointer of the name, actually the uintptr_t type, and not a pointer to any string.

Description

JS::PropertySpecNameIsSymbol determines if the given JSPropertySpec::name or JSFunctionSpec::name value is actually a symbol code and not a string, and returns true if so.

See Also

Document Tags and Contributors

 Contributors to this page: kscarfone, arai
 Last updated by: kscarfone,