class SyntaxTree::Parser

def on_super(arguments)

on_super: ((ArgParen | Args) arguments) -> Super
:call-seq:
def on_super(arguments)
  keyword = consume_keyword(:super)
  Super.new(
    arguments: arguments,
    location: keyword.location.to(arguments.location)
  )
end