GNOME Bugzilla – Bug 780273
cleanup: Use arrow notation for anonymous functions
Last modified: 2017-04-11 00:50:26 UTC
See patch. (It looks somewhat less scary when viewed with -w, i.e. `git log -p -w`)
Created attachment 348269 [details] [review] cleanup: Use arrow notation for anonymous functions Arrow notation is great, but as we only started using it recently, we currently have a wild mix of Lang.bind(this, function() {}), function() {} and () => {}. To make the style consistent again, go through the entire codebase and change all anonymous functions to arrow notation (using /[^:].function/ for identifying them).
Attachment 348269 [details] pushed as 2f3d808 - cleanup: Use arrow notation for anonymous functions