blob: cfc13f4bcd8299d76bfe6d3ce42e370b9e331715 [file] [log] [blame]
package addrs
// PathAttr is the address of an attribute of the "path" object in
// the interpolation scope, like "path.module".
type PathAttr struct {
referenceable
Name string
}
func (pa PathAttr) String() string {
return "path." + pa.Name
}