Method: Puppet::Pops::Types::TypeFormatter#string_URI

Defined in:
lib/puppet/pops/types/type_formatter.rb

#string_URI(t) ⇒ Object



376
377
378
379
380
381
382
383
384
385
# File 'lib/puppet/pops/types/type_formatter.rb', line 376

def string_URI(t)
  @bld << 'URI('
  if @indent
    append_indented_string(t.to_s, @indent, @indent_width, true)
    @bld.chomp!
  else
    append_string(t.to_s)
  end
  @bld << ')'
end