MCPcopy Create free account
hub / github.com/decomp/decomp / label

Function label

cfa/cfa.go:112–117  ·  view source on GitHub ↗

label returns the label of the node.

(n graph.Node)

Source from the content-addressed store, hash-verified

110
111// label returns the label of the node.
112func label(n graph.Node) string {
113 if n, ok := n.(*cfg.Node); ok {
114 return n.Label
115 }
116 panic(fmt.Sprintf("invalid node type; expected *cfg.Node, got %T", n))
117}

Callers 12

PrimMethod · 0.70
StringMethod · 0.70
PrimMethod · 0.70
StringMethod · 0.70
PrimMethod · 0.70
StringMethod · 0.70
PrimMethod · 0.70
StringMethod · 0.70
PrimMethod · 0.70
StringMethod · 0.70
PrimMethod · 0.70
StringMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected