add_function_breakpoint
Set a breakpoint on a function by name to pause execution when that function is entered, useful when the method name is known but not the exact line.
Instructions
Set a breakpoint on a function by name.
Breaks when the named function is entered. This is useful when you know the method name but not the exact line number.
Escape hatch: see the dap-escape-hatch prompt for unwrapped DAP requests.
Args: function_name: Full or partial function name to break on condition: Optional condition expression hit_condition: Optional hit count condition
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| function_name | Yes | ||
| condition | No | ||
| hit_condition | No |