summaryrefslogtreecommitdiffstats
path: root/lib/puppet/parser/ast/resource_instance.rb
blob: ebfb17bf1428d187ca3585371b879b7e9452d2a3 (plain)
1
2
3
4
5
6
7
8
9
require 'puppet/parser/ast/branch'

class Puppet::Parser::AST
  class ResourceInstance < Branch
    # A simple container for a parameter for an object.  Consists of a
    # title and a set of parameters.
    attr_accessor :title, :parameters
  end
end