summaryrefslogtreecommitdiff
path: root/lib/puppet/functions/is_string.rb
blob: 4978284d0e1de2ad68c4b8cf43f622f21d7efeb0 (plain)
1
2
3
4
5
6
7
8
9
10
Puppet::Functions.create_function(:is_string, Puppet::Functions::InternalFunction) do
  dispatch :deprecation_gen do
    scope_param
    optional_repeated_param 'Any', :args
  end
  def deprecation_gen(scope, *args)
    call_function('deprecation', 'is_string', "This method is deprecated, please use match expressions with Stdlib::Compat::String instead. They are described at https://docs.puppet.com/puppet/latest/reference/lang_data_type.html#match-expressions.")
    scope.send("function_is_string", args)
  end
end