Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Property mangling does not always mangle global properties #5953

Open
AshleyScirra opened this issue Oct 25, 2024 · 2 comments
Open

Property mangling does not always mangle global properties #5953

AshleyScirra opened this issue Oct 25, 2024 · 2 comments

Comments

@AshleyScirra
Copy link
Contributor

Uglify version (uglifyjs -V) 3.19.3

JavaScript input

self.MyGlobal = 1
console.log(self.MyGlobal);

console.log(self.MyGlobal2);

The uglifyjs CLI command executed or minify() options used.

uglifyjs input.js --mangle-props --beautify --output output.js

JavaScript output or error produced.

self.l = 1;
console.log(self.l);

console.log(self.MyGlobal2);

Expected result: both self.MyGlobal and self.MyGlobal2 to be treated consistently, both being renamed to a shorter property.

Observed result: only self.MyGlobal is mangled. For some reason self.MyGlobal2 is not mangled. Perhaps this is because the parser has not seen an assignment to the global property yet.

Impact: This breaks property mangling when using multiple files or a shared nameCache: it's possible MyGlobal2 was assigned to in a different script. For example if input1.js does self.MyGlobal2 = 2, then input2.js does console.log(self.MyGlobal2), the properties are not consistently mangled and the output is broken. Therefore to ensure property mangling works in these cases, UglifyJS must consistently mangle all global properties regardless of whether they are assigned to or only read from.

@alexlamsl
Copy link
Collaborator

So this would work as you expected if we use --mangle-props globals a.k.a. #5933:

$ cat test.js
self.MyGlobal = 1;
console.log(self.MyGlobal);
console.log(self.MyGlobal2);
$ uglify-js test.js -b --mangle-props
self.l = 1;

console.log(self.l);

console.log(self.MyGlobal2);
$ uglify-js test.js -b --mangle-props globals
self.l = 1;

console.log(self.l);

console.log(self.o);

I realise I have yet to make a new release which includes that feature, will do in the next few days.

As for your concern on consistency, --name-cache seems to be working as expected:

$ cat one.js
self.MyGlobal = 1;
$ cat two.js
console.log(self.MyGlobal);
$ uglify-js one.js --name-cache names.json --mangle-props
self.l = 1;
$ uglify-js two.js --name-cache names.json --mangle-props
console.log(self.l);

@AshleyScirra
Copy link
Contributor Author

Thanks, let me know when the next version is out and I'll check again with the new globals option.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants