| Summary: | [quickfix] Remove unused parameter does not clean up the corresponding entry in require call | ||
|---|---|---|---|
| Product: | [ECD] Orion | Reporter: | Michael Rennie <Michael_Rennie> |
| Component: | JS Tools | Assignee: | Michael Rennie <Michael_Rennie> |
| Status: | RESOLVED FIXED | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | ||
| Version: | 10.0 | ||
| Target Milestone: | 10.0 | ||
| Hardware: | PC | ||
| OS: | Mac OS X | ||
| Whiteboard: | |||
Consider the following snippet: /*eslint-env node */ require(['foo/bar'], function(a) { } ); if you try to remove the unused param, the param is removed (OK), but we fail to clean up the corresponding entry in the path array like we do in define calls.