Tagged Questions

1
vote
4answers
56 views

What's the fastest way to interpret a nested javascript object attribute accessor string?

Say I have a nested object structure like: var o = { a: { b: { c: 1 } } }; and I have a an accessor String like "a.b.c". What's the fastest function to return the specified nested value (to any ...
0
votes
1answer
178 views

How do I get the value of a JSObject property from C?

In SpiderMonkey, how do I get the value of a property of a JSObject from within my C code? static JSBool JSD_getter(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval) { jsval ...