| 603 | JS_EXTERN JSValue JS_AtomToString(JSContext *ctx, JSAtom atom); |
| 604 | JS_EXTERN const char *JS_AtomToCStringLen(JSContext *ctx, size_t *plen, JSAtom atom); |
| 605 | static inline const char *JS_AtomToCString(JSContext *ctx, JSAtom atom) |
| 606 | { |
| 607 | return JS_AtomToCStringLen(ctx, NULL, atom); |
| 608 | } |
| 609 | JS_EXTERN JSAtom JS_ValueToAtom(JSContext *ctx, JSValueConst val); |
| 610 | |
| 611 | /* object class support */ |
no outgoing calls