AppCode 2016.3 Help

Types of Breakpoints

On this page:

Introduction

Breakpoints are simple but very important debug instrument which allows you to suspend a program upon reaching the certain breakpoint and examine behavior of the program and its components at that point. A breakpoint is defined by one or more conditions that determine when a program's execution should be interrupted. These conditions depend on breakpoint type and configuration.

AppCode lets you create breakpoints of several types. Each breakpoint type supported by AppCode addresses different debugging needs and has its own individual settings.

AppCode enables you to set the following types of breakpoints:

Line breakpoint

These breakpoints are assigned to lines of source code and are used to target a particular section for debugging.

Line breakpoints are triggered when the program reaches the specified line of source code, before it is executed. The line of code that contains a set breakpoint, is marked with a red stripe; once such line of code is reached, the marking stripe changes to blue.

Temporary line breakpoint is a subset of the line breakpoint. The only difference is that the breakpoint of that type is immediately removed when hit.

Exception breakpoint

Exception breakpoints are triggered when the specified exception is thrown. Unlike the line breakpoints, which require specific source references, exception breakpoints apply globally to the exception condition, rather than to a particular code reference.

Symbolic breakpoint

Symbolic breakpoints stop program execution when a specific function or method starts executing. Symbolic breakpoint can be triggered within a specific module (modules) only or within all modules, as required. Refer to Creating Symbolic Breakpoints for details.

See Also

Last modified: 28 March 2017