terraform-provider-google/vendor/github.com/hashicorp/terraform/addrs/self.go
2018-12-26 10:59:22 -08:00

15 lines
268 B
Go

package addrs
// Self is the address of the special object "self" that behaves as an alias
// for a containing object currently in scope.
const Self selfT = 0
type selfT int
func (s selfT) referenceableSigil() {
}
func (s selfT) String() string {
return "self"
}