Class: Hocon::Impl::SimpleIncluder

Inherits:
FullIncluder show all
Defined in:
lib/hocon/impl/simple_includer.rb

Defined Under Namespace

Classes: Proxy

Class Method Summary collapse

Class Method Details

.make_full(includer) ⇒ Object



12
13
14
15
16
17
18
# File 'lib/hocon/impl/simple_includer.rb', line 12

def self.make_full(includer)
  if includer.is_a?(Hocon::Impl::FullIncluder)
    includer
  else
    Proxy.new(includer)
  end
end