MCPcopy Create free account
hub / github.com/aptly-dev/aptly / A

Method A

query/syntax.go:57–64  ·  view source on GitHub ↗

A := B | B ',' A

()

Source from the content-addressed store, hash-verified

55
56// A := B | B ',' A
57func (p *parser) A() deb.PackageQuery {
58 q := p.B()
59 if p.input.Current().typ == itemAnd {
60 p.input.Consume()
61 return &deb.AndQuery{L: q, R: p.A()}
62 }
63 return q
64}
65
66// B := C | '!' B
67func (p *parser) B() deb.PackageQuery {

Callers 1

QueryMethod · 0.95

Calls 3

BMethod · 0.95
CurrentMethod · 0.80
ConsumeMethod · 0.80

Tested by

no test coverage detected