summaryrefslogtreecommitdiff
path: root/vendor/github.com/hashicorp/terraform/terraform/edge_destroy.go
blob: bc9d638aadf2ea4e58ea753897df61cb43205ba9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package terraform

import (
	"fmt"

	"github.com/hashicorp/terraform/dag"
)

// DestroyEdge is an edge that represents a standard "destroy" relationship:
// Target depends on Source because Source is destroying.
type DestroyEdge struct {
	S, T dag.Vertex
}

func (e *DestroyEdge) Hashcode() interface{} { return fmt.Sprintf("%p-%p", e.S, e.T) }
func (e *DestroyEdge) Source() dag.Vertex    { return e.S }
func (e *DestroyEdge) Target() dag.Vertex    { return e.T }