Files
cdnjs/node_modules/uglify-js/test/compress/issue-12.js
T
2014-07-17 01:32:32 +08:00

12 lines
265 B
JavaScript

keep_name_of_getter: {
options = { unused: true };
input: { a = { get foo () {} } }
expect: { a = { get foo () {} } }
}
keep_name_of_setter: {
options = { unused: true };
input: { a = { set foo () {} } }
expect: { a = { set foo () {} } }
}