# File lib/puppet/parameter.rb, line 80 80: def aliasvalue(name, other) 81: other = other.to_sym 82: unless value = match?(other) 83: raise Puppet::DevError, "Cannot alias nonexistent value %s" % other 84: end 85: 86: value.alias(name) 87: end