Hi All,
I am trying out a debugger prototype using the remote debugger protocol. 
Going by the standard example in Embedder's Guide:
C++ class:
-------------
class Point {
 public:
  Point(int x, int y) : x_(x), y_(y) { }
  int x_, y_;
}

Usage in JavaScript:
---------------------------
var p = Point(1,2);

Has anyone tried debugging a wrapped C++ object that is being returned to 
Javascript? Is it possible? 

regards,
Anoop R. S.

-- 
-- 
v8-users mailing list
v8-users@googlegroups.com
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 v8-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to