Class: Puppet::Parser::Scope::ParameterScope::Access Private
- Defined in:
- lib/puppet/parser/scope.rb
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Instance Attribute Summary collapse
- #value ⇒ Object private
Instance Method Summary collapse
- #assigned? ⇒ Boolean private
Instance Attribute Details
#value ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
171 172 173 |
# File 'lib/puppet/parser/scope.rb', line 171 def value @value end |
Instance Method Details
#assigned? ⇒ Boolean
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
173 174 175 |
# File 'lib/puppet/parser/scope.rb', line 173 def assigned? instance_variable_defined?(:@value) end |