module Parser::Messages

def self.compile(reason, arguments)

Other tags:
    Api: - private
def self.compile(reason, arguments)
  template = MESSAGES[reason]
  return template if Hash === arguments && arguments.empty?
  format(template, arguments)
end