pub fn shorthand() -> impl 'static + Fold + VisitMut
Compile ES2015 shorthand properties to ES5
var o = { a, b, c };
var o = { a: a, b: b, c: c };
var cat = { getName() { return name; } };
var cat = { getName: function () { return name; } };