class Puppet::Pops::Model::ConcatenatedString

Update the interpolated string token to return a composed value string so we don't have to special case its handling. Because this is pre-compilation, we cannot resolve variables. So just tag w/ a marker

Public Instance Methods

value() click to toggle source
# File lib/puppet_x/binford2k/itemize/monkeypatch.rb, line 5
def value
  segments.map {|t| t.value rescue nil }.join('<??>')
end