Question is regarding Debug Server Scripting API;
What is the difference between ContextStep and SourceStep classes?
Thanks.
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Question is regarding Debug Server Scripting API;
What is the difference between ContextStep and SourceStep classes?
Thanks.
Hello,
What is the difference between ContextStep and SourceStep classes?
contextStep will attempt to perform a source step-into or source step-over if source stepping if possible, otherwise it will perform an asm step-in or asm step-over.
sourceStep will attempt to perform a source step-into or source step-over if source stepping if possible, otherwise it will throw an exception.
Thanks
ki