View Issue Details

IDProjectCategoryView StatusLast Update
0000070XdebugStep Debuggingpublic2020-03-12 17:03
Reporterderick Assigned To 
PriorityhighSeverityfeatureReproducibilityN/A
Status closedResolutionopen 
Summary0000070: Add feature_get breakpoint_types
Description

(21:49:07) Shane: I'm thinking of this:
feature_get breakpoint_types

<response ..... types="line conditional exception"/>
(21:50:02) Derick: that sounds fine to me, but I'd prefer "," to separate types
21:50
(21:50:55) Shane: we use some seperation in another attribute somewhere else, we should match whatever that is. I don't remember if it was space or comma.
(21:51:07) Derick: yes, that's fine
(21:51:15) Derick: i don't remember either :)
(21:51:25) Shane: the common seperation I've seen in other stuff has been space (eg. class attributes for html)
(21:51:39) Derick: ok

TagsNo tags attached.
Operating System
PHP Version4.3.8-dev

Activities

derick

2004-07-09 17:07

administrator   ~0000148

Suspending for now.

mccabe

2005-07-31 15:06

reporter   ~0000268

I'd like to see this implemented.
Isn't is as simple as adding:

    XDEBUG_STR_CASE(&quot;breakpoint_types&quot;)
        xdebug_xml_add_text(*retval, &quot;line&quot;);
        xdebug_xml_add_attribute(*retval, &quot;supported&quot;, &quot;1&quot;);
    XDEBUG_STR_CASE_END

To DBGP_FUNC(feature_get) in file xdebug_handler_dbgp.c (~ line 1290 of CVS 2005-07-31)?

(Assuming xdebug onlyt supports line breakpoints ofcourse)

/Linus

mccabe

2005-07-31 15:16

reporter   ~0000269

The line should read:

xdebug_xml_add_text(*retval, xdstrdup("line"));

of course...

derick

2006-01-24 23:06

administrator   ~0000365

Added in CVS.

Issue History

Date Modified Username Field Change
2004-07-06 20:55 derick New Issue
2004-07-09 17:07 derick Note Added: 0000148
2004-07-09 17:07 derick Status new => feedback
2005-07-31 15:06 mccabe Note Added: 0000268
2005-07-31 15:16 mccabe Note Added: 0000269
2006-01-24 23:06 derick Status feedback => closed
2006-01-24 23:06 derick Note Added: 0000365
2020-03-12 16:56 derick Severity trivial => feature
2020-03-12 17:03 derick Category Feature/Change request => Step Debugging