summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorLuke Kanies <luke@madstop.com>2005-08-17 15:57:33 +0000
committerLuke Kanies <luke@madstop.com>2005-08-17 15:57:33 +0000
commit78939cc0ae05e21887f3a297dc5cd718f9cb5502 (patch)
tree97207fa7f1212345a9389920cb09d39d34ec4704 /lib
parent51ffd6fa7fcdf2f407c6f7a1ae6218d2c5038ac1 (diff)
downloadpuppet-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.rb2
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)