class RBS::Factory
Public Instance Methods
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/lib/rbs/factory.rb, line 5 def type_name(string) absolute = string.start_with?("::") *path, name = string.delete_prefix("::").split("::").map(&:to_sym) name or raise TypeName.new( name: name, namespace: Namespace.new(path: path, absolute: absolute) ) end