123456789_123456789_123456789_123456789_123456789_

Module: Kernel

Relationships & Source Files
Defined in: lib/rbs/namespace.rb,
lib/rbs/type_name.rb

Instance Method Summary

Instance Method Details

Namespace(name)

[ GitHub ]

  
# File 'lib/rbs/namespace.rb', line 121

def Namespace(name)
  warn "Kernel#Namespace() is deprecated. Use RBS::Namespace.parse instead.", category: :deprecated
  RBS::Namespace.parse(name)
end

TypeName(string)

[ GitHub ]

  
# File 'lib/rbs/type_name.rb', line 105

def TypeName(string)
  warn "Kernel#TypeName() is deprecated. Use RBS::TypeName.parse instead.", category: :deprecated
  RBS::TypeName.parse(string)
end