-
I'm debugging a node typescript project. I need to get the value of a member for which the getter is defined. Stopping at a breakpoint and trying to access this.member. But the member is formed by a getter function. Currently I get the getter function as return value. I checked vs-code debugger's code they have implemented it differently. Can someone help me with how to do it for this CDP library ?
This is the code that I've tried but I'm getting an error. Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Worked by using the function |
Beta Was this translation helpful? Give feedback.
Worked by using the function
client.Debugger.EvaluateOnCallFrame
and passing the callFrame id and the expression