aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/github.com/hashicorp/terraform/addrs/self.go
blob: 7f24eaf085b756aba3f7ff7a6bd9e7b859dd6ccc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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"
}