Class: Symbol
Instance Method Summary collapse
-
#const_lookup(ns = Object) ⇒ Object
looks up this symbol as a constant defined in ‘ns’ (Object by default).
Instance Method Details
#const_lookup(ns = Object) ⇒ Object
looks up this symbol as a constant defined in ‘ns’ (Object by default)
576 577 578 |
# File 'lib/rbkb/extends.rb', line 576 def const_lookup(ns=Object) self.to_s.const_lookup(ns) end |