diff options
author | Luke Kanies <luke@madstop.com> | 2005-08-17 15:57:33 +0000 |
---|---|---|
committer | Luke Kanies <luke@madstop.com> | 2005-08-17 15:57:33 +0000 |
commit | 78939cc0ae05e21887f3a297dc5cd718f9cb5502 (patch) | |
tree | 97207fa7f1212345a9389920cb09d39d34ec4704 /lib | |
parent | 51ffd6fa7fcdf2f407c6f7a1ae6218d2c5038ac1 (diff) | |
download | puppet-78939cc0ae05e21887f3a297dc5cd718f9cb5502.tar.gz puppet-78939cc0ae05e21887f3a297dc5cd718f9cb5502.tar.xz puppet-78939cc0ae05e21887f3a297dc5cd718f9cb5502.zip |
passing file and line to all objects
git-svn-id: https://reductivelabs.com/svn/puppet/library/trunk@557 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'lib')
-rw-r--r-- | lib/puppet/type.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/type.rb b/lib/puppet/type.rb index cacc78c28..043c90e81 100644 --- a/lib/puppet/type.rb +++ b/lib/puppet/type.rb @@ -35,7 +35,7 @@ require 'puppet/type/state' module Puppet class Type < Puppet::Element attr_accessor :children, :parameters, :parent - attr_accessor :paramdoc + attr_accessor :paramdoc, :file, :line include Enumerable @@retrieved = Hash.new(0) |