mirror of
https://github.com/ruby/ruby.git
synced 2025-08-24 21:44:30 +02:00

Also remove RBS for currently ignored files. Will follow-up when those
check fully in later PRs.
2cae58f86d
11 lines
343 B
Ruby
11 lines
343 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Prism
|
|
# This module is responsible for converting the prism syntax tree into other
|
|
# syntax trees.
|
|
module Translation # steep:ignore
|
|
autoload :Parser, "prism/translation/parser"
|
|
autoload :Ripper, "prism/translation/ripper"
|
|
autoload :RubyParser, "prism/translation/ruby_parser"
|
|
end
|
|
end
|