module Kernel

Public Instance Methods

Namespace(name) click to toggle source
# File rbs-3.8.0/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) click to toggle source
# File rbs-3.8.0/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