actually enable the option that drops unused names in the test of issue #12
authorMihai Bazon <mihai@bazon.net>
Fri, 12 Oct 2012 08:41:48 +0000 (11:41 +0300)
committerMihai Bazon <mihai@bazon.net>
Fri, 12 Oct 2012 08:41:48 +0000 (11:41 +0300)
test/compress/issue-12.js

index 711c79e..bf87d5c 100644 (file)
@@ -1,9 +1,11 @@
 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 () {} } }
 }