Closed
Bug 1930975
Opened 4 months ago
Closed 2 months ago
Linter warnings in Actions.sys.mjs for: "warning 'action' is already declared in the upper scope on line 42 column 14"
Categories
(Remote Protocol :: Agent, defect, P3)
Remote Protocol
Agent
Tracking
(firefox136 fixed)
RESOLVED
FIXED
136 Branch
Tracking | Status | |
---|---|---|
firefox136 | --- | fixed |
People
(Reporter: whimboo, Assigned: speneth1, Mentored)
Details
(Whiteboard: [lang=js][webdriver:m15][webdriver:external][webdriver:relnote])
Attachments
(1 file)
Running the linter on remote/shared/webdriver/Actions.sys.mjs
I get quite a couple of linter warnings:
1934:27 warning 'action' is already declared in the upper scope on line 42 column 14. no-shadow (eslint)
1999:28 warning 'action' is already declared in the upper scope on line 42 column 14. no-shadow (eslint)
2006:38 warning 'action' is already declared in the upper scope on line 42 column 14. no-shadow (eslint)
2029:21 warning 'action' is already declared in the upper scope on line 42 column 14. no-shadow (eslint)
2076:28 warning 'action' is already declared in the upper scope on line 42 column 14. no-shadow (eslint)
2082:38 warning 'action' is already declared in the upper scope on line 42 column 14. no-shadow (eslint)
2132:36 warning 'action' is already declared in the upper scope on line 42 column 14. no-shadow (eslint)
2203:22 warning 'action' is already declared in the upper scope on line 42 column 14. no-shadow (eslint)
2218:30 warning 'action' is already declared in the upper scope on line 42 column 14. no-shadow (eslint)
2446:41 warning 'action' is already declared in the upper scope on line 42 column 14. no-shadow (eslint)
2498:39 warning 'action' is already declared in the upper scope on line 42 column 14. no-shadow (eslint)
2535:41 warning 'action' is already declared in the upper scope on line 42 column 14. no-shadow (eslint)
2674:16 warning 'action' is already declared in the upper scope on line 42 column 14. no-shadow (eslint)
2705:58 warning 'action' is already declared in the upper scope on line 42 column 14. no-shadow (eslint)
2733:16 warning 'action' is already declared in the upper scope on line 42 column 14. no-shadow (eslint)
3031:36 warning 'action' is already declared in the upper scope on line 42 column 14. no-shadow (eslint)
Those exist because the module name that we export is named action
as well. We should update the code in all these lines to not use action
but some other similar name.
Reporter | ||
Updated•3 months ago
|
Mentor: hskupin
Severity: -- → S3
Priority: -- → P3
Whiteboard: [lang=js]
I would like to take up this bug if it's still available!
Flags: needinfo?(hskupin)
-'action' parameters with warning flags from mach linter in Actions.sys.mjs have been
renamed to 'eventAction' along with refs to avoid a naming conflict with the module of the same name.
Updated•3 months ago
|
Assignee: nobody → speneth1
Status: NEW → ASSIGNED
Pushed by hskupin@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/dd57b86d4773
[WebDriver] Renamed 'action' params in Actions.sys.mjs to avoid conflict with 'action' module. r=whimboo,webdriver-reviewers
Comment 5•2 months ago
|
||
bugherder |
Status: ASSIGNED → RESOLVED
Closed: 2 months ago
status-firefox136:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → 136 Branch
Reporter | ||
Updated•12 days ago
|
Whiteboard: [lang=js] → [lang=js][webdriver:m15][webdriver:external][webdriver:relnote]
You need to log in
before you can comment on or make changes to this bug.
Description
•