UglifyJS/test
Zirak a9049497b1 Handle uglify-reserve comments to reserve props
If you want uglify to reserve property names for a specific function, you
may now precede the function with comments containing:
uglify-reserve prop0 prop1 prop2 ... propN
and in that function's scope, these properties will not be mangled.

For example:

// uglify-reserve keepme
function foo() {
    return {
	keepme: "This property will NOT be mangled",
	butme: "This property WILL be mangled"
    };
}
2016-10-13 21:38:21 +00:00
..
compress Handle uglify-reserve comments to reserve props 2016-10-13 21:38:21 +00:00
input Make all comment options in cli available in js api 2016-09-06 17:54:45 +02:00
mocha Make all comment options in cli available in js api 2016-09-06 17:54:45 +02:00
mocha.js Add mocha tests 2015-12-27 22:38:20 +01:00
mozilla-ast.js Fix mozilla-ast after module loading changes 2015-09-24 18:13:21 +03:00
run-tests.js Test reparsing test/compress/*.js output 2016-08-14 21:27:23 +02:00
sourcemaps.js Fix #836 2015-10-20 19:48:56 +01:00