gecko-dev/devtools/client/shared
Andrew McCreight 5dec0e0beb Bug 1432992, part 1 - Remove definitions of Ci, Cr, Cc, and Cu. r=florian
This patch was autogenerated by my decomponents.py

It covers almost every file with the extension js, jsm, html, py,
xhtml, or xul.

It removes blank lines after removed lines, when the removed lines are
preceded by either blank lines or the start of a new block. The "start
of a new block" is defined fairly hackily: either the line starts with
//, ends with */, ends with {, <![CDATA[, """ or '''. The first two
cover comments, the third one covers JS, the fourth covers JS embedded
in XUL, and the final two cover JS embedded in Python. This also
applies if the removed line was the first line of the file.

It covers the pattern matching cases like "var {classes: Cc,
interfaces: Ci, utils: Cu, results: Cr} = Components;". It'll remove
the entire thing if they are all either Ci, Cr, Cc or Cu, or it will
remove the appropriate ones and leave the residue behind. If there's
only one behind, then it will turn it into a normal, non-pattern
matching variable definition. (For instance, "const { classes: Cc,
Constructor: CC, interfaces: Ci, utils: Cu } = Components" becomes
"const CC = Components.Constructor".)

MozReview-Commit-ID: DeSHcClQ7cG

--HG--
extra : rebase_source : d9c41878036c1ef7766ef5e91a7005025bc1d72b
2018-02-06 09:36:57 -08:00
..
components Bug 1432992, part 1 - Remove definitions of Ci, Cr, Cc, and Cu. r=florian 2018-02-06 09:36:57 -08:00
redux Bug 1431533: Part 5a - Auto-rewrite code to use ChromeUtils import methods. r=florian 2018-01-29 15:20:18 -08:00
source-map Bug 1339461 - script-generated patch to convert foo.indexOf(...) == -1 to foo.includes(), r=Mossop. 2018-02-01 20:45:22 +01:00
test Bug 1432992, part 1 - Remove definitions of Ci, Cr, Cc, and Cu. r=florian 2018-02-06 09:36:57 -08:00
vendor Bug 1432992, part 1 - Remove definitions of Ci, Cr, Cc, and Cu. r=florian 2018-02-06 09:36:57 -08:00
webpack Bug 1432992, part 1 - Remove definitions of Ci, Cr, Cc, and Cu. r=florian 2018-02-06 09:36:57 -08:00
widgets Bug 1432992, part 1 - Remove definitions of Ci, Cr, Cc, and Cu. r=florian 2018-02-06 09:36:57 -08:00
AppCacheUtils.jsm Bug 1432992, part 1 - Remove definitions of Ci, Cr, Cc, and Cu. r=florian 2018-02-06 09:36:57 -08:00
autocomplete-popup.js Bug 1381542 - renamed "devtools/shared/event-emitter" in "devtools/shared/old-event-emitter"; r=ochameau 2017-08-11 03:47:30 +02:00
browser-loader.js Bug 1432992, part 1 - Remove definitions of Ci, Cr, Cc, and Cu. r=florian 2018-02-06 09:36:57 -08:00
css-angle.js Bug 1396600 - Make some efforts to lazy load properties-db. r=tromey 2017-09-06 18:54:07 +02:00
curl.js Bug 1420982 - Fix for copy as cURL ignoring PATCH data. r=Honza 2017-12-22 00:41:50 +05:30
demangle.js Bug 1339461 - script-generated patch to convert foo.indexOf(...) == -1 to foo.includes(), r=Mossop. 2018-02-01 20:45:22 +01:00
developer-toolbar.js Bug 1398329 - Convert uses of defer to new Promise in client/shared (except in test/, vendor/ and widgets/ subdirs). r=Honza, r=nchevobbe 2017-09-08 23:32:47 +02:00
devices.js Bug 1412359 - Filter to matching device on remove. r=gl 2017-10-30 11:00:55 -05:00
DOMHelpers.jsm Bug 1432992, part 1 - Remove definitions of Ci, Cr, Cc, and Cu. r=florian 2018-02-06 09:36:57 -08:00
doorhanger.js Bug 1398329 - Convert uses of defer to new Promise in client/shared (except in test/, vendor/ and widgets/ subdirs). r=Honza, r=nchevobbe 2017-09-08 23:32:47 +02:00
enum.js
file-saver.js
frame-script-utils.js Bug 1432992, part 1 - Remove definitions of Ci, Cr, Cc, and Cu. r=florian 2018-02-06 09:36:57 -08:00
getjson.js Bug 1398329 - Convert uses of defer to new Promise in client/shared (except in test/, vendor/ and widgets/ subdirs). r=Honza, r=nchevobbe 2017-09-08 23:32:47 +02:00
inplace-editor.js Bug 1413314 - Change precise increment to Ctrl instead of Alt for Linux compat; r=jryans 2018-01-26 23:36:21 +05:30
key-shortcuts.js Bug 1381542 - renamed "devtools/shared/event-emitter" in "devtools/shared/old-event-emitter"; r=ochameau 2017-08-11 03:47:30 +02:00
keycodes.js
moz.build Bug 1406061 - Remove the unused Jsbeautify.jsm module; r=jdescottes 2017-10-19 09:58:19 +02:00
natural-sort.js Bug 1411368 - Automatically fix no-multi-spaces issues raised when using ESLint 4. r=mossop 2017-10-26 11:47:01 +01:00
network-throttling-profiles.js
node-attribute-parser.js Bug 1425356 - remove various dead XUL sort attributes, r=bz,florian 2017-12-20 15:08:27 +00:00
options-view.js Bug 1381542 - renamed "devtools/shared/event-emitter" in "devtools/shared/old-event-emitter"; r=ochameau 2017-08-11 03:47:30 +02:00
output-parser.js Bug 1339461 - script-generated patch to convert foo.indexOf(...) == -1 to foo.includes(), r=Mossop. 2018-02-01 20:45:22 +01:00
poller.js Bug 1398329 - Convert uses of defer to new Promise in client/shared (except in test/, vendor/ and widgets/ subdirs). r=Honza, r=nchevobbe 2017-09-08 23:32:47 +02:00
prefs.js Bug 1381542 - renamed "devtools/shared/event-emitter" in "devtools/shared/old-event-emitter"; r=ochameau 2017-08-11 03:47:30 +02:00
react-utils.js Bug 1402394 CamelCase all React component files in \devtools\client\shared\components\. r=pbro 2017-09-27 01:12:13 -04:00
scroll.js
source-utils.js Bug 1265526 - Correctly categorize blob URLs and wasm frames as user content; r=julienw 2017-05-26 18:07:56 -05:00
splitview.css
SplitView.jsm Bug 1432992, part 1 - Remove definitions of Ci, Cr, Cc, and Cu. r=florian 2018-02-06 09:36:57 -08:00
stylesheet-utils.js Bug 1359090 - extract appendStyleSheet util from theme-switching to dedicated util;r=ochameau 2017-04-27 15:26:38 +02:00
suggestion-picker.js
telemetry.js Bug 1241131 - Remove DevTools reload addon;r=ochameau 2017-11-30 19:08:44 +01:00
theme-switching.js Bug 1432992, part 1 - Remove definitions of Ci, Cr, Cc, and Cu. r=florian 2018-02-06 09:36:57 -08:00
theme.js Bug 1395834 - Implement theme loader; r=nchevobbe 2017-09-14 10:03:26 +02:00
undo.js
view-source.js Bug 1354672 - update debugger frontend 04/18/17;r=jdescottes 2017-04-20 14:49:44 +02:00
webgl-utils.js
zoom-keys.js