export function propertyAssignment() {
  return { a: 'a' }
}
export function shorthandPropertyAssignment() {
  const a = 'a'
  return { a }
}
