keep_var_for_in: { options = { hoist_vars: true, unused: true, } input: { (function(obj){ var foo = 5; for (var i in obj) return foo; })(); } expect: { (function(obj){ var i, foo = 5; for (i in obj) return foo; })(); } } '>
aboutsummaryrefslogtreecommitdiff
path: root/etc/historical-authorizations
AgeCommit message (Expand)Author
2020-07-11Add 'etc/historical-authorizations'....* etc/historical-authorizations: New file. Data extracted from 'build-aux/git-authenticate.scm'. * Makefile.am (EXTRA_DIST): Add it. Ludovic Courtès