What about --mangle-props being on and --mangle being off?

This commit is contained in:
Fábio Santos
2015-08-10 21:13:30 +01:00
parent 7ee8f3512e
commit adee5023c0
2 changed files with 5 additions and 7 deletions

View File

@@ -1187,6 +1187,11 @@ function OutputStream(options) {
output.print(':');
output.space();
output.print(def.mangled_name);
} else if (!(def && def.mangled_name) && self.mangled_key) {
output.print(name);
output.print(':');
output.space();
output.print(def.name);
} else {
output.print(name);
}