Lines Matching refs:mangle
84 mangle: {}, property
112 if (options.mangle) {
113 options.mangle = defaults(options.mangle, {
125 if (options.mangle.properties) {
126 if (typeof options.mangle.properties != "object") {
127 options.mangle.properties = {};
129 if (options.mangle.properties.keep_quoted) {
130 quoted_props = options.mangle.properties.reserved;
132 options.mangle.properties.reserved = quoted_props;
134 if (options.nameCache && !("cache" in options.mangle.properties)) {
135 options.mangle.properties.cache = options.nameCache.props || {};
138 init_cache(options.mangle.cache);
139 init_cache(options.mangle.properties.cache);
141 if (options.rename === undefined) options.rename = options.compress && options.mangle;
201 if (options.mangle) toplevel.figure_out_scope(options.mangle);
202 if (timings) timings.mangle = Date.now();
203 if (options.mangle) {
204 toplevel.compute_char_frequency(options.mangle);
205 toplevel.mangle_names(options.mangle);
209 …if (options.mangle && options.mangle.properties) mangle_properties(toplevel, options.mangle.proper…
247 if (options.nameCache && options.mangle) {
248 if (options.mangle.cache) options.nameCache.vars = to_json(options.mangle.cache);
249 if (options.mangle.properties && options.mangle.properties.cache) {
250 options.nameCache.props = to_json(options.mangle.properties.cache);
259 scope: 1e-3 * (timings.mangle - timings.scope),
260 mangle: 1e-3 * (timings.properties - timings.mangle), property