Hi - Probably a very noobie quesstion here - I just started embedding v8 into my c++ project, and I'm hoping that you all might have some tips for working with v8 handles and objects in the VS2013 IDE - I was wondering if there is a trick or a plug-in or something that allows one to conveniently see the values of Local<Value> or Local<String> or other v8 variables - right now all I can see are meaningless 32-bit handle and pointer addresses for v8 variables in the VS2013 watch window, and to see the underlying values I have to stop execution, go back and insert lines into my code like "Local<String> data_tostring = data->ToString(); String::Utf8Value data_str(data);", recompile, and rerun in order to see any of the underlying actual data - here's a screenshot of my Watch window currently:
<https://lh3.googleusercontent.com/-yrY9cirsrrg/VMqUItmG8BI/AAAAAAAAKo0/7s9qWmw_RlQ/s1600/Capture.PNG> Info contains an array of parameters, [3,"hi"], and arg contains the string "hi", although there's obviously currently no way to tell this from the watch window. Thanks in advance. -Mark -- -- 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/d/optout.
