lib/prism/translation.rb in prism-0.22.0 vs lib/prism/translation.rb in prism-0.23.0

- old
+ new

@@ -1,11 +1,11 @@ # frozen_string_literal: true module Prism # This module is responsible for converting the prism syntax tree into other - # syntax trees. At the moment it only supports converting to the - # whitequark/parser gem's syntax tree, but support is planned for the - # seattlerb/ruby_parser gem's syntax tree as well. + # syntax trees. module Translation autoload :Parser, "prism/translation/parser" + autoload :Ripper, "prism/translation/ripper" + autoload :RubyParser, "prism/translation/ruby_parser" end end