Step by Step

Discussion about CodeLite development process and patches
lxZero
CodeLite Curious
Posts: 5
Joined: Tue Jun 07, 2011 12:15 am
Genuine User: Yes
IDE Question: C++
Contact:

Step by Step

Post by lxZero »

Eran,

Suppose that while debugging step by step a line like A(B());C(); you are at the last line of B
- If you issue there a 'Next' then you will be sent to the line after A(B());C();

I wonder if it is possible to do it as Visual Studio does which is:
- a 'Next' takes you back to the line containing A(B());C();

Otherwise to get into C();
- 'Step-Out' which correctly brings you to the same line
- and then Step-in. To get in to A
- Step-Out back on the main line
- finally Step-In to get into C

Thank you
lxZero