MCPcopy Index your code
hub / github.com/git-bug/git-bug / Operations

Method Operations

entities/bug/bug.go:117–124  ·  view source on GitHub ↗

Operations return the ordered operations

()

Source from the content-addressed store, hash-verified

115
116// Operations return the ordered operations
117func (bug *Bug) Operations() []Operation {
118 source := bug.Entity.Operations()
119 result := make([]Operation, len(source))
120 for i, op := range source {
121 result[i] = op.(Operation)
122 }
123 return result
124}
125
126// Compile a bug in an easily usable snapshot
127func (bug *Bug) Compile() *Snapshot {

Callers 1

CompileMethod · 0.95

Calls 1

OperationsMethod · 0.65

Tested by

no test coverage detected