Method: Puppet::Context::EmptyStack#push
- Defined in:
- lib/puppet/context.rb
#push(overrides, description = '') ⇒ 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.
Push bindings onto the stack by creating a new Stack object with ‘self` as the parent
127 128 129 |
# File 'lib/puppet/context.rb', line 127 def push(overrides, description = '') Puppet::Context::Stack.new(self, overrides, description) end |