Sha256: 7a84a8cf4801d5008d7f37af977148abd6de311d592110866c4e29f19d3984ae

Contents?: true

Size: 360 Bytes

Versions: 4

Compression:

Stored size: 360 Bytes

Contents

# frozen_string_literal: true

Puppet::Parser::Functions::newfunction(
  :fail,
  :arity => -1,
  :doc => <<~DOC
    Fail with a parse error. Any parameters will be stringified,
    concatenated, and passed to the exception-handler.
  DOC
) do |vals|
  vals = vals.collect { |s| s.to_s }.join(" ") if vals.is_a? Array
  raise Puppet::ParseError, vals.to_s
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
puppet-8.4.0 lib/puppet/parser/functions/fail.rb
puppet-8.4.0-x86-mingw32 lib/puppet/parser/functions/fail.rb
puppet-8.4.0-x64-mingw32 lib/puppet/parser/functions/fail.rb
puppet-8.4.0-universal-darwin lib/puppet/parser/functions/fail.rb