# File lib/puppet/parser/ast/resource_reference.rb, line 44
44:         def qualified_class(scope, title)
45:             # Look up the full path to the class
46:             if classobj = scope.find_hostclass(title)
47:                 title = classobj.classname
48:             else
49:                 raise Puppet::ParseError, "Could not find class %s" % title
50:             end
51:         end