Method: NewRelic::LanguageSupport#constantize

Defined in:
lib/new_relic/language_support.rb

#constantize(const_name) ⇒ Object



38
39
40
41
42
43
# File 'lib/new_relic/language_support.rb', line 38

def constantize(const_name)
  return if const_name.nil?

  Object.const_get(const_name)
rescue NameError
end