Closed
Bug 990137
Opened 11 years ago
Closed 7 years ago
Remove legacy code for conditional breakpoints on the client
Categories
(DevTools :: Debugger, defect)
Tracking
(firefox67 fixed)
RESOLVED
FIXED
Firefox 67
Tracking | Status | |
---|---|---|
firefox67 | --- | fixed |
People
(Reporter: jlong, Assigned: bhackett1024)
References
(Blocks 1 open bug)
Details
Attachments
(1 file)
4.17 KB,
patch
|
jlast
:
review+
|
Details | Diff | Splinter Review |
In bug 812172 we implemented conditional breakpoint functionality in the debugger server. Before that, conditional breakpoints were handled client-side.
We need to keep the client-side handling functionality around so that users connecting to an older server will still have this functionality. Firefox OS does not update very quickly, and we can't remove the client-side functionality and leave them hanging until Firefox OS updates with the new server code.
This bug is a reminder to remove the old client-side code whenever most of the debugger servers have it. That might be a while (maybe end of 2014?), depends on how fast things like Firefox OS are updated.
Updated•11 years ago
|
Summary: Remove legacy code for client-side conditional breakpoint evaluation → Remove legacy code for conditional breakpoints in the client
Updated•11 years ago
|
Summary: Remove legacy code for conditional breakpoints in the client → Remove legacy code for conditional breakpoints on the client
Updated•11 years ago
|
Blocks: dbg-client
Updated•7 years ago
|
Product: Firefox → DevTools
Assignee | ||
Comment 1•7 years ago
|
||
It would be nice to remove this obsolete code.
Assignee: nobody → bhackett1024
Attachment #9037323 -
Flags: review?(lsmyth)
Assignee | ||
Updated•7 years ago
|
Attachment #9037323 -
Flags: review?(lsmyth) → review?(jlaster)
Comment 2•7 years ago
|
||
Comment on attachment 9037323 [details] [diff] [review]
patch
Review of attachment 9037323 [details] [diff] [review]:
-----------------------------------------------------------------
::: devtools/shared/client/breakpoint-client.js
@@ +60,4 @@
> * Determines if this breakpoint has a condition
> */
> hasCondition: function() {
> + return "condition" in this;
i think we can get rid of hasCondition and getCondition as well
Attachment #9037323 -
Flags: review?(jlaster) → review+
Pushed by bhackett@mozilla.com:
https://hg.mozilla.org/integration/mozilla-inbound/rev/bb17a7e03265
Remove obsolete handling code for client side conditional breakpoints, r=jlast.
Comment 4•7 years ago
|
||
bugherder |
Status: NEW → RESOLVED
Closed: 7 years ago
status-firefox67:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → Firefox 67
You need to log in
before you can comment on or make changes to this bug.
Description
•