class SyntaxTree::Parser

def on_break(arguments)

on_break: (Args arguments) -> Break
:call-seq:
def on_break(arguments)
  keyword = consume_keyword(:break)
  location = keyword.location
  location = location.to(arguments.location) if arguments.parts.any?
  Break.new(arguments: arguments, location: location)
end