aboutsummaryrefslogtreecommitdiff
path: root/test/input/reduce/setter.reduced.js
blob: d947226f1090a591ba0e024e28e5a809f4111fbb (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
console.log(function f(a) {
    ({
        set p(v) {
            f++;
        }
    });
    return f.length;
}());
// output: 1
// 
// minify: 0
// 
// options: {
//   "compress": {
//     "keep_fargs": false,
//     "unsafe": true
//   },
//   "mangle": false
// }