summaryrefslogtreecommitdiffstats
path: root/lib/puppet/parser/grammar.ra
diff options
context:
space:
mode:
authorLuke Kanies <luke@madstop.com>2007-09-06 18:53:00 -0500
committerLuke Kanies <luke@madstop.com>2007-09-06 18:53:00 -0500
commitb7f42441b91c921cd31f3d8c7875ce98bdedf786 (patch)
tree07ef5bf2d42027914704d0305a353741d191cc90 /lib/puppet/parser/grammar.ra
parent653c1514b613f27cb22d24b4bdd7b6c118047566 (diff)
downloadpuppet-b7f42441b91c921cd31f3d8c7875ce98bdedf786.tar.gz
puppet-b7f42441b91c921cd31f3d8c7875ce98bdedf786.tar.xz
puppet-b7f42441b91c921cd31f3d8c7875ce98bdedf786.zip
Renaming some ast resource classes and files so they make a lot more sense.
Diffstat (limited to 'lib/puppet/parser/grammar.ra')
-rw-r--r--lib/puppet/parser/grammar.ra14
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/puppet/parser/grammar.ra b/lib/puppet/parser/grammar.ra
index c7216186a..26cb42217 100644
--- a/lib/puppet/parser/grammar.ra
+++ b/lib/puppet/parser/grammar.ra
@@ -116,19 +116,19 @@ resourcerefs: resourceref
resource: classname LBRACE resourceinstances endsemi RBRACE {
array = val[2]
- if array.instance_of?(AST::ResourceInst)
+ if array.instance_of?(AST::ResourceInstance)
array = [array]
end
result = ast AST::ASTArray
# this iterates across each specified resourceinstance
array.each { |instance|
- unless instance.instance_of?(AST::ResourceInst)
+ unless instance.instance_of?(AST::ResourceInstance)
raise Puppet::Dev, "Got something that isn't an instance"
end
# now, i need to somehow differentiate between those things with
# arrays in their names, and normal things
- result.push ast(AST::ResourceDef,
+ result.push ast(AST::Resource,
:type => val[0],
:title => instance[0],
:params => instance[1])
@@ -248,12 +248,12 @@ colllval: variable
| name
resourceinst: resourcename COLON params endcomma {
- result = ast AST::ResourceInst, :children => [val[0],val[2]]
+ result = ast AST::ResourceInstance, :children => [val[0],val[2]]
}
resourceinstances: resourceinst
| resourceinstances SEMIC resourceinst {
- if val[0].instance_of?(AST::ResourceInst)
+ if val[0].instance_of?(AST::ResourceInstance)
result = ast AST::ASTArray, :children => [val[0],val[2]]
else
val[0].push val[2]
@@ -385,9 +385,9 @@ boolean: BOOLEAN {
resourceref: NAME LBRACK rvalue RBRACK {
Puppet.warning addcontext("Deprecation notice: Resource references should now be capitalized")
- result = ast AST::ResourceRef, :type => val[0], :title => val[2]
+ result = ast AST::ResourceReference, :type => val[0], :title => val[2]
} | classref LBRACK rvalue RBRACK {
- result = ast AST::ResourceRef, :type => val[0], :title => val[2]
+ result = ast AST::ResourceReference, :type => val[0], :title => val[2]
}
ifstatement: IF iftest LBRACE statements RBRACE else {