UglifyJS/lib
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
..
ast.js Actually limit sequence length. 2016-04-12 14:17:24 +03:00
compress.js Fix (typeof side_effect()) in boolean context 2016-10-06 13:50:11 +02:00
mozilla-ast.js Don't convert all strings to directives from moz-ast 2016-07-03 12:36:57 +02:00
output.js Remove console.log and add extra test case 2016-10-06 14:11:32 +02:00
parse.js Legacy octal integer strict mode fixes 2016-07-21 14:42:16 +02:00
propmangle.js Handle uglify-reserve comments to reserve props 2016-10-13 21:38:21 +00:00
scope.js Optimize unmodified variables 2016-10-01 11:36:11 +02:00
sourcemap.js lib/sourcemap.js: Copy sourceContent from old souce-map to the new source-map. Should fix #882 2016-07-17 19:36:15 +02:00
transform.js Collapse single use var definitions 2016-01-27 11:48:15 +02:00
utils.js Various LineTerminator changes 2016-06-30 22:12:50 +02:00