Sha256: fd8fb90d8c8c8855c581568900cb1cc81be6bc3cb0850ba9b66b9ac0137cadaa
Contents?: true
Size: 426 Bytes
Versions: 20
Compression:
Stored size: 426 Bytes
Contents
# frozen_string_literal: true # A simple container for a parameter for an object. Consists of a # title and a set of parameters. # class Puppet::Parser::AST::ResourceInstance < Puppet::Parser::AST::Branch attr_accessor :title, :parameters def initialize(argshash) Puppet.warn_once('deprecations', 'AST::ResourceInstance', _('Use of Puppet::Parser::AST::ResourceInstance is deprecated')) super(argshash) end end
Version data entries
20 entries across 20 versions & 1 rubygems