123456789_123456789_123456789_123456789_123456789_
# File 'lib/rbs/namespace.rb', line 121
def Namespace(name) RBS::Namespace.parse(name) end
# File 'lib/rbs/type_name.rb', line 93
def TypeName(string) absolute = string.start_with?("::") *path, name = string.delete_prefix("::").split("::").map(&:to_sym) raise unless name RBS::TypeName.new( name: name, namespace: RBS::Namespace.new(path: path, absolute: absolute) ) end