I want to programmatically list all properties of JS object from C++ code (I am using Mozilla's JSAPI). I know I can go up the prototype chain with JS_GetPrototype, then enumerate each object's own properties with JS_Enumerate. Is there a simpler way to do this?

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

I don't think there is. The code implementing property enumeration for JavaScript (function js_ValueToIterator()) uses highly optimized iterators. I don't see these iterators being made accessible to JSAPI anywhere.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.