1keep_properties: { 2 options = { 3 properties: false 4 }; 5 input: { 6 a["foo"] = "bar"; 7 } 8 expect: { 9 a["foo"] = "bar"; 10 } 11} 12 13dot_properties: { 14 options = { 15 properties: true 16 }; 17 input: { 18 a["foo"] = "bar"; 19 a["if"] = "if"; 20 } 21 expect: { 22 a.foo = "bar"; 23 a["if"] = "if"; 24 } 25} 26 27