I believe you can only interact with it on a javascript-basis from the 
javascript debugger.   I don't know of any way to treat it special from the 
javascript debugger.

I often end up setting two breakpoints - first in JS, then another in the 
native callback I registered for the javascript object/operation I'm about 
to call.

--Zac

On Monday, May 7, 2018 at 9:35:12 PM UTC-7, Anoop R. S. wrote:
>
> 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