Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions pkg/registry/graph.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ type Node interface {
Name() string
// Type returns the type of the registry element a Node refers to
Type() Type
// Ancestors returns a set of strings containing the names of all of the node's ancestors
// Ancestors returns a set of nodes containing the names of all of the node's ancestors
Ancestors() []Node
// Descendants returns a set of strings containing the names of all of the node's descendants
// Descendants returns a set of nodes containing the names of all of the node's descendants
Descendants() []Node
// Parents returns a set of strings containing the names of all the node's parents
// Parents returns a set of nodes containing the names of all the node's parents
Parents() []Node
// Children returns a set of strings containing the names of all the node's children
// Children returns a set of nodes containing the names of all the node's children
Children() []Node
}

Expand Down