breakpoint_set_data
Set a data breakpoint that halts execution when a specified variable is modified or accessed. Requires the variable's reference and name from a prior get call.
Instructions
Set a data/watch breakpoint: break when a specific variable changes (or is read). Requires a variablesReference + name from variables_get. May not be supported by all adapters.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| variablesReference | Yes | variablesReference of the container holding the variable (from variables_get). | |
| name | Yes | Name of the variable to watch. | |
| accessType | No | Access type: "write" (default), "read", or "readWrite". | write |