diff options
Diffstat (limited to 'lib/puppet/parser/ast')
| -rw-r--r-- | lib/puppet/parser/ast/caseopt.rb | 2 | ||||
| -rw-r--r-- | lib/puppet/parser/ast/else.rb | 4 | ||||
| -rw-r--r-- | lib/puppet/parser/ast/function.rb | 2 | ||||
| -rw-r--r-- | lib/puppet/parser/ast/resourcedefaults.rb | 2 | ||||
| -rw-r--r-- | lib/puppet/parser/ast/tag.rb | 2 | ||||
| -rw-r--r-- | lib/puppet/parser/ast/vardef.rb | 2 |
6 files changed, 14 insertions, 0 deletions
diff --git a/lib/puppet/parser/ast/caseopt.rb b/lib/puppet/parser/ast/caseopt.rb index f6f2457d9..1c712e896 100644 --- a/lib/puppet/parser/ast/caseopt.rb +++ b/lib/puppet/parser/ast/caseopt.rb @@ -1,3 +1,5 @@ +require 'puppet/parser/ast/branch' + class Puppet::Parser::AST # Each individual option in a case statement. class CaseOpt < AST::Branch diff --git a/lib/puppet/parser/ast/else.rb b/lib/puppet/parser/ast/else.rb index a29623f56..ff2f233b7 100644 --- a/lib/puppet/parser/ast/else.rb +++ b/lib/puppet/parser/ast/else.rb @@ -1,3 +1,5 @@ +require 'puppet/parser/ast/branch' + class Puppet::Parser::AST # A separate ElseIf statement; can function as an 'else' if there's no # test. @@ -24,3 +26,5 @@ class Puppet::Parser::AST end end end + +# $Id$ diff --git a/lib/puppet/parser/ast/function.rb b/lib/puppet/parser/ast/function.rb index 6729431b7..052b8a8b1 100644 --- a/lib/puppet/parser/ast/function.rb +++ b/lib/puppet/parser/ast/function.rb @@ -1,3 +1,5 @@ +require 'puppet/parser/ast/branch' + class Puppet::Parser::AST # An AST object to call a function. class Function < AST::Branch diff --git a/lib/puppet/parser/ast/resourcedefaults.rb b/lib/puppet/parser/ast/resourcedefaults.rb index 44db4d465..df16b1b59 100644 --- a/lib/puppet/parser/ast/resourcedefaults.rb +++ b/lib/puppet/parser/ast/resourcedefaults.rb @@ -1,3 +1,5 @@ +require 'puppet/parser/ast/branch' + class Puppet::Parser::AST # A statement syntactically similar to an ResourceDef, but uses a # capitalized object type and cannot have a name. diff --git a/lib/puppet/parser/ast/tag.rb b/lib/puppet/parser/ast/tag.rb index 0807d207e..4a2015cde 100644 --- a/lib/puppet/parser/ast/tag.rb +++ b/lib/puppet/parser/ast/tag.rb @@ -1,3 +1,5 @@ +require 'puppet/parser/ast/branch' + class Puppet::Parser::AST # The code associated with a class. This is different from components # in that each class is a singleton -- only one will exist for a given diff --git a/lib/puppet/parser/ast/vardef.rb b/lib/puppet/parser/ast/vardef.rb index 145700e27..6093952d4 100644 --- a/lib/puppet/parser/ast/vardef.rb +++ b/lib/puppet/parser/ast/vardef.rb @@ -1,3 +1,5 @@ +require 'puppet/parser/ast/branch' + class Puppet::Parser::AST # Define a variable. Stores the value in the current scope. class VarDef < AST::Branch |
