Skip to content

Commit

Permalink
Merge branch 'master' into feature/codeql
Browse files Browse the repository at this point in the history
  • Loading branch information
aleks-ivanov committed Apr 29, 2024
2 parents 255c908 + 14062bc commit e344205
Show file tree
Hide file tree
Showing 3 changed files with 719 additions and 4 deletions.
4 changes: 2 additions & 2 deletions test/compress/properties.js
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,8 @@ mangle_properties: {
a["foo"] = "bar";
a.color = "red";
x = {"bar": 10};
a.run(x.bar, a.foo);
a['run']({color: "blue", foo: "baz"});
a.doRun(x.bar, a.foo);
a['doRun']({color: "blue", foo: "baz"});
}
expect: {
a["o"]="bar";a.color="red";x={l:10};a.u(x.l,a.o);a["u"]({color:"blue",o:"baz"});
Expand Down

0 comments on commit e344205

Please sign in to comment.