| ||||||
SummaryCasts the type tag for a specified JS value and returns a pointer to the value cast as a JS string. | ||||||
SyntaxJSVAL_TO_STRING(v) | ||||||
DescriptionJSVAL_TO_STRING casts a specified JS value, v , to a JS string. It does so by casting the value's type tag and casting the result to a string pointer.
Casting
| ||||||
NotesThis macro assumes that the JS type tag forv is already JSVAL_STRING .
Because JS values are represented as bit-shifted C integers, comparisons of
JSVAL_TO_STRING(v) to v itself are not equal unless you ignore the C pointer
type mismatch and v is an object reference.
| ||||||
See Also
|