class SyntaxTree::Parser

def on_bare_assoc_hash(assocs)

) -> BareAssocHash
Array[AssocNew | AssocSplat] assocs
on_bare_assoc_hash: (
:call-seq:
def on_bare_assoc_hash(assocs)
  BareAssocHash.new(
    assocs: assocs,
    location: assocs[0].location.to(assocs[-1].location)
  )
end