*DECL_ACCESSORS() *declares functions.

For example,

class JSFunction: public JSObject 
{
 public:
  // [prototype_or_initial_map]:
  *DECL_ACCESSORS*(prototype_or_initial_map, Object);
... 
};

#define *DECL_ACCESSORS(name, type)  *                                    \
  inline type* name();                                                  \
  inline void set_##name(type* value,                                   \
                         WriteBarrierMode mode = UPDATE_WRITE_BARRIER); \


And set_prototype_or_initial_map() is called in other methods.
I would like to read the source of set_prototype_or_initial_map() but I can 
find where it is implemented.


Thank you.

-- 
-- 
v8-users mailing list
[email protected]
http://groups.google.com/group/v8-users
--- 
You received this message because you are subscribed to the Google Groups 
"v8-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to