Update stdlib and concat to 6.1.0 both
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / lib / puppet / parser / functions / private.rb
1 #
2 # private.rb
3 #
4 module Puppet::Parser::Functions
5   newfunction(:private, :doc => <<-'DOC'
6    @summary
7     **Deprecated:** Sets the current class or definition as private.
8     Calling the class or definition from outside the current module will fail.
9
10    @return
11       Sets the current class or definition as private
12   DOC
13              ) do |args|
14     warning("private() DEPRECATED: This function will cease to function on Puppet 4; please use assert_private() before upgrading to puppet 4 for backwards-compatibility, or migrate to the new parser's typing system.") # rubocop:disable Metrics/LineLength : Cannot shorten this line
15     unless Puppet::Parser::Functions.autoloader.loaded?(:assert_private)
16       Puppet::Parser::Functions.autoloader.load(:assert_private)
17     end
18     function_assert_private([(args[0] unless args.empty?)])
19   end
20 end