From: Abhishek T. <abh...@au...> - 2015-12-24 20:39:11
|
Hello , As per the below statement : http://docs.activestate.com/tdk/4.1/Debugger.html The Run to Cursor button lets you to create a temporary breakpoint that is automatically removed the next time the Tcl Dev Kit Debugger stops. When your application is stopped, you can move the cursor to the line of code where you want to stop, and press the Run To Cursor button. Note: If the application stops for any reason, such as encountering another breakpoint or reaching the line containing the cursor, the temporary breakpoint is removed. The operation of the Run to Cursor feature is similar to those of line-based breakpoints. If the cursor is not set, or if it is on a line that is either empty or contains only comments or curly braces, clicking the Run to Cursor button is equivalent to clicking the Run button. The application stops just before evaluating the first command on the line regardless of where you place the cursor on a line of code. ------------------ So do you think I can remove the lines which curly braces(both start and closed) from the tcl code which is supposed to be covered? Since anyhow, I would never be covered. Regards |