Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

JS_InternJSString

This article needs a technical review. How you can help.

This article covers features introduced in SpiderMonkey 1.8.5

Make a string to interned string.

Syntax

JSString *
JS_InternJSString(JSContext *cx, JS::HandleString str);
Name Type Description
cx JSContext * The context. Requires request. In a JS_THREADSAFE build, the caller must be in a request on this JSContext.
str JS::HandleString A string to be interned.

Description

JS_InternJSString converts a string str to interned string (interned atom) and returns the result string as JSString *.

On failure, JS_InternJSString returns nullptr.

See Also

Document Tags and Contributors

 Contributors to this page: kscarfone, arai, fscholz, ethertank, trevorh, markg
 Last updated by: kscarfone,