Method: Puppet::Parser::Scope::ParameterScope#include?

Defined in:
lib/puppet/parser/scope.rb

#include?(name) ⇒ 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.

Returns:

  • (Boolean)


247
248
249
# File 'lib/puppet/parser/scope.rb', line 247

def include?(name)
  @params.include?(name) || super
end