keep_properties: {
options = {
properties: false
};
input: {
a["foo"] = "bar";
}
expect: {
dot_properties: {
properties: true
a["if"] = "if";
a.foo = "bar";
dot_properties_es5: {
properties: true,
screw_ie8: true
a.if = "if";