- the CLI option is now --mangle-debug - the implementation is now a bit more elegant, always using a random number and relying on the existing cache mechanism - takes in to account can_mangle - updated readme & test
23 lines
717 B
JavaScript
23 lines
717 B
JavaScript
var Uglify = require('../../');
|
|
var assert = require("assert");
|
|
|
|
describe("mangle_properties 'debug' option ", function() {
|
|
it("Should test the 'debug' option of mangle_properties works as expected", function() {
|
|
var js = 'var o = {}; o.foo = "bar";';
|
|
|
|
var ast = Uglify.parse(js);
|
|
ast.figure_out_scope();
|
|
ast = Uglify.mangle_properties(ast, {
|
|
debug: true
|
|
});
|
|
|
|
var stream = Uglify.OutputStream();
|
|
ast.print(stream);
|
|
var result = stream.toString();
|
|
|
|
// Should match: var o={};o._$foo$NNN="bar";
|
|
// where NNN is a number.
|
|
assert(/var o=\{\};o\._\$foo\$\d+_="bar";/.test(result));
|
|
});
|
|
});
|