Shorthand functions with computed property names fail
I believe both a, b and c below are valid, but currently b and c cause Bublé to throw cryptic errors.
const obj = {
a() {},
"b"() {},
["c"]() {}
};
I believe both a, b and c below are valid, but currently b and c cause Bublé to throw cryptic errors.
const obj = {
a() {},
"b"() {},
["c"]() {}
};