Pull jsval impl details into jsvalimpl.h (included by jspubtd.h) and pull js::Value into jsvalue.h (engine-private)

This commit is contained in:
Luke Wagner
2010-06-30 15:25:47 -07:00
parent 331c5c8962
commit cff3af7e94
23 changed files with 82 additions and 1528 deletions

View File

@@ -47,6 +47,10 @@
#include "jspubtd.h"
#include "jsutil.h"
#ifdef __cplusplus
# include "jsvalue.h"
#endif
JS_BEGIN_EXTERN_C
/*
@@ -466,7 +470,7 @@ js_DecompileValueGenerator(JSContext *cx, intN spindex, jsval v,
namespace js {
static inline char *
DecompileValueGenerator(JSContext *cx, intN spindex, Value v,
DecompileValueGenerator(JSContext *cx, intN spindex, const Value &v,
JSString *fallback)
{
return js_DecompileValueGenerator(cx, spindex, Jsvalify(v), fallback);