diff options
author | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-02-07 05:58:00 +0000 |
---|---|---|
committer | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-02-07 05:58:00 +0000 |
commit | 6affe220db1248cee8489347dc7d7ac071a534e4 (patch) | |
tree | e885f7ac374336c818374556065da70036b71211 /lib/puppet/parser/ast/component.rb | |
parent | 59c7b02f8fb0c5f2820577f11c9c34935ac16a0a (diff) | |
download | puppet-6affe220db1248cee8489347dc7d7ac071a534e4.tar.gz puppet-6affe220db1248cee8489347dc7d7ac071a534e4.tar.xz puppet-6affe220db1248cee8489347dc7d7ac071a534e4.zip |
Committing both the finalization of the config code, plus all of the code necessary to get basic isomorphism from code to transportables and back. Mostly keyword and autoname stuff.
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@871 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'lib/puppet/parser/ast/component.rb')
-rw-r--r-- | lib/puppet/parser/ast/component.rb | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/puppet/parser/ast/component.rb b/lib/puppet/parser/ast/component.rb index 841977b2f..f5105c44b 100644 --- a/lib/puppet/parser/ast/component.rb +++ b/lib/puppet/parser/ast/component.rb @@ -10,7 +10,7 @@ class Puppet::Parser::AST # The class name @name = :component - attr_accessor :name, :args, :code, :scope + attr_accessor :name, :args, :code, :scope, :autoname, :keyword def evaluate(scope,hash,objtype,objname) @@ -23,6 +23,13 @@ class Puppet::Parser::AST # been dynamically generated. This is almost never used scope.name = objname + scope.keyword = self.keyword + + # Retain the fact that we were autonamed, if so + if self.autoname + scope.autoname = true + end + #if self.is_a?(Node) # scope.isnodescope #end |