Class: Puppet::Parser::Util::Value
- Inherits:
-
Object
- Object
- Puppet::Parser::Util::Value
- Defined in:
- lib/puppet/parser/util/erly.rb
Instance Method Summary collapse
-
#initialize(val) ⇒ Value
constructor
A new instance of Value.
- #pp(level = 0) ⇒ Object
- #to_s ⇒ Object
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_s ⇒ Object
35 36 37 |
# File 'lib/puppet/parser/util/erly.rb', line 35 def to_s @val end |