Skip to content
Snippets Groups Projects
Commit 7e2022cb authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Add a js.options property to report the option flags used for the JS ctx

parent 42b91547
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #1423 passed
......@@ -41,6 +41,7 @@ enum {
,PROP_MAXBYTES
#endif
,PROP_GLOBAL
,PROP_OPTIONS
};
static JSBool js_get(JSContext *cx, JSObject *obj, jsid id, jsval *vp)
......@@ -107,6 +108,9 @@ static JSBool js_get(JSContext *cx, JSObject *obj, jsid id, jsval *vp)
case PROP_GLOBAL:
*vp = OBJECT_TO_JSVAL(JS_GetGlobalObject(cx));
break;
case PROP_OPTIONS:
*vp = UINT_TO_JSVAL(JS_GetOptions(cx));
break;
}
return(JS_TRUE);
......@@ -181,6 +185,7 @@ static jsSyncPropertySpec js_properties[] = {
{ "max_bytes", PROP_MAXBYTES, JSPROP_ENUMERATE, 311 },
#endif
{ "global", PROP_GLOBAL, PROP_FLAGS, 314 },
{ "options", PROP_OPTIONS, PROP_FLAGS, 31802 },
{0}
};
......@@ -201,6 +206,7 @@ static char* prop_desc[] = {
,"maximum number of bytes available for heap"
#endif
,"global (top level) object - <small>READ ONLY</small>"
,"option flags - <small>READ ONLY</small>"
/* New properties go here... */
,"full path and filename of JS file executed"
,"directory of executed JS file"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment