class Prism::Translation::RubyParser

def parse(source, filepath = "(string)")

gem's Sexp format.
Parse the given source and translate it into the seattlerb/ruby_parser
def parse(source, filepath = "(string)")
  translate(Prism.parse(source, filepath: filepath, partial_script: true), filepath)
end