# File lib/kirbybase.rb, line 3873
    def full_const_get(name)
        list = name.split("::")
        obj = Object
        list.each {|x| obj = obj.const_get(x) }
        obj
    end