Closed
Bug 830388
Opened 12 years ago
Closed 12 years ago
Avoid multiple bind calls in debugger-controller.js when handling object expansions
Categories
(DevTools :: Debugger, defect, P3)
DevTools
Debugger
Tracking
(Not tracked)
RESOLVED
FIXED
Firefox 21
People
(Reporter: vporof, Assigned: vporof)
References
Details
Attachments
(1 file)
9.55 KB,
patch
|
msucan
:
review+
|
Details | Diff | Splinter Review |
this._fetchScopeVariables.bind(this, aScope, aEnv); and
this._fetchVarProperties.bind(this, aVar, aGrip);
These little things can be easily avoided, and they're potentially called thousands (milliards! millions!) of times for each variable and property. That's not so memory friendly.
Assignee | ||
Updated•12 years ago
|
Assignee: nobody → vporof
Status: NEW → ASSIGNED
Assignee | ||
Updated•12 years ago
|
Priority: -- → P3
Assignee | ||
Comment 1•12 years ago
|
||
Attachment #707002 -
Flags: review?(mihai.sucan)
Comment 2•12 years ago
|
||
Comment on attachment 707002 [details] [diff] [review]
v1
Looks good. r+ as long as all tests pass.
Attachment #707002 -
Flags: review?(mihai.sucan) → review+
Assignee | ||
Comment 3•12 years ago
|
||
Whiteboard: [fixed-in-fx-team]
Comment 4•12 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
Whiteboard: [fixed-in-fx-team]
Target Milestone: --- → Firefox 21
Updated•7 years ago
|
Product: Firefox → DevTools
You need to log in
before you can comment on or make changes to this bug.
Description
•