Closed
Bug 1806616
Opened 2 years ago
Closed 2 years ago
Instantiate only one Parser worker for the debugger and console.
Categories
(DevTools :: Debugger, task)
DevTools
Debugger
Tracking
(firefox110 fixed)
RESOLVED
FIXED
110 Branch
Tracking | Status | |
---|---|---|
firefox110 | --- | fixed |
People
(Reporter: ochameau, Assigned: ochameau)
References
Details
Attachments
(1 file)
(deleted),
text/x-phabricator-request
|
Details |
Today if you open the debugger we instantiate a duplicated instance of the parser worker.
One is called "parserWorker" and the other one evaluationsParser".
Assignee | ||
Comment 1•2 years ago
|
||
The debugger was involving two distinct instances of parser worker.
One instance managed by the debugger "parserWorker" and another one
managed by the toolbox and also used by the console "evaluationsParser".
By reusing a shared instance we will increase the chance of parsing
files only once, simplify overall comprehension of the various workers
involved and may be speed up toolbox opening.
Updated•2 years ago
|
Assignee: nobody → poirot.alex
Status: NEW → ASSIGNED
Pushed by apoirot@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/f0ea19f9d0d5
[devtools] Rename Toolbox.parserService to parserWorker and merge it with debugger duplicated instance. r=jdescottes
Comment 3•2 years ago
|
||
bugherder |
Status: ASSIGNED → RESOLVED
Closed: 2 years ago
status-firefox110:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → 110 Branch
You need to log in
before you can comment on or make changes to this bug.
Description
•