Class: Puppet::Parser::Util::Value

Inherits:
Object
  • Object
show all
Defined in:
lib/puppet/parser/util/erly.rb

Instance Method Summary collapse

Constructor Details

#initialize(val) ⇒ Value

Returns a new instance of Value.



31
32
33
# File 'lib/puppet/parser/util/erly.rb', line 31

def initialize(val)
  @val = val
end

Instance Method Details

#pp(level = 0) ⇒ Object



39
40
41
# File 'lib/puppet/parser/util/erly.rb', line 39

def pp(level=0)
  to_s
end

#to_sObject



35
36
37
# File 'lib/puppet/parser/util/erly.rb', line 35

def to_s
  @val
end