module Prism::Translation::Parser::ProcessedSource

def parser_class(ruby_version)

list of known parsers.
Redefine parser_class so that we can inject the prism parser into the
def parser_class(ruby_version)
  if ruby_version == Prism::Translation::Parser::VERSION_3_3
    require "prism/translation/parser"
    Prism::Translation::Parser
  else
    super
  end
end