gecko-dev/js2/tests/cpp/shamu.h

20 строки
496 B
C

typedef struct JSStackFrame JSStackFrame;
typedef struct JSPropertyDescArray JSPropertyDescArray;
#ifdef JS_ARGUMENT_FORMATTER_DEFINED
/*
* Linked list mapping format strings for JS_{Convert,Push}Arguments{,VA} to
* formatter functions. Elements are sorted in non-increasing format string
* length order.
*/
struct JSArgumentFormatMap {
const char *format;
size_t length;
JSArgumentFormatter formatter;
JSArgumentFormatMap *next;
};
#endif