diff options
author | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-04-05 03:40:03 +0000 |
---|---|---|
committer | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-04-05 03:40:03 +0000 |
commit | ee652796206b8d2eb52befa2e1fe3032b21c19b3 (patch) | |
tree | ff5e311cba34d3bf6667dfe72c81ae88aec0e179 /lib/puppet/parser/ast/node.rb | |
parent | c3c413ea4549743a9a7718654d36054df72c16e6 (diff) | |
download | puppet-ee652796206b8d2eb52befa2e1fe3032b21c19b3.tar.gz puppet-ee652796206b8d2eb52befa2e1fe3032b21c19b3.tar.xz puppet-ee652796206b8d2eb52befa2e1fe3032b21c19b3.zip |
Fixing #103. There are now no such things as node scopes; the entire tree is evaluated on every node connection, and node facts are set at the top-level scope. This includes,um, the code; the last commit was accidentally just test changes.
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@1073 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'lib/puppet/parser/ast/node.rb')
-rw-r--r-- | lib/puppet/parser/ast/node.rb | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/puppet/parser/ast/node.rb b/lib/puppet/parser/ast/node.rb index 32bed7a2b..2e68cbdb3 100644 --- a/lib/puppet/parser/ast/node.rb +++ b/lib/puppet/parser/ast/node.rb @@ -19,10 +19,6 @@ class Puppet::Parser::AST ) scope.context = self.object_id - # Mark this scope as a nodescope, so that classes will be - # singletons within it - scope.isnodescope - # Now set all of the facts inside this scope facts.each { |var, value| scope.setvar(var, value) |