Replace references to generatedLocation in the server
Categories
(DevTools :: Debugger, task, P5)
Tracking
(firefox69 fixed)
Tracking | Status | |
---|---|---|
firefox69 | --- | fixed |
People
(Reporter: jlast, Assigned: khmorehouse)
References
(Blocks 1 open bug)
Details
(Keywords: good-first-bug)
Attachments
(1 file)
There are plenty of places in the server where the terms (generatedLocation, generatedLine, generatedColumn, ...) are used. We can replace these with (location, line, column, ...)
For historical context. We have this because the server used to support source maps.
I started this here a couple of months ago.
Reporter | ||
Updated•6 years ago
|
Reporter | ||
Updated•6 years ago
|
Assignee | ||
Comment 2•6 years ago
|
||
@Jason, I'd be happy to take this.
Looking at your comment and the gist posted above, I've searched through the files, and it seems that the relevant changes to be made are:
- Replace:
- generatedSourceActor —> sourceActor
- generatedLine —> line
- generatedColumn —> column
- generatedLastColumn —> lastColumn
- generatedUrl —> url
- Replace any references in comments to match the above changes.
The affected files are:
- devtools/server/actors/breakpoint.js
- devtools/server/actors/common.js
- devtools/server/actors/frame.js
- devtools/server/actors/thread.js
- devtools/server/actors/utils/TabSources.js
Is there anything else I should look at in order to complete this task properly?
Reporter | ||
Updated•6 years ago
|
Assignee | ||
Comment 3•6 years ago
|
||
Replace:
generatedSourceActor —> sourceActor
generatedLine —> line
generatedColumn —> column
generatedLastColumn —> lastColumn
generatedUrl —> url
generatedLocation -> location
GeneratedLocation -> SourceLocation
parentGeneratedLocation -> parentLocation
Replace references in comments to match the above changes.
The affected files are:
devtools/server/actors/breakpoint.js
devtools/server/actors/common.js
devtools/server/actors/frame.js
devtools/server/actors/thread.js
devtools/server/actors/utils/TabSources.js
Comment 5•6 years ago
|
||
bugherder |
Description
•