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

Method B

query/syntax.go:67–73  ·  view source on GitHub ↗

B := C | '!' B

()

Source from the content-addressed store, hash-verified

65
66// B := C | '!' B
67func (p *parser) B() deb.PackageQuery {
68 if p.input.Current().typ == itemNot {
69 p.input.Consume()
70 return &deb.NotQuery{Q: p.B()}
71 }
72 return p.C()
73}
74
75// C := '(' Query ')' | D
76func (p *parser) C() deb.PackageQuery {

Callers 1

AMethod · 0.95

Calls 3

CMethod · 0.95
CurrentMethod · 0.80
ConsumeMethod · 0.80

Tested by

no test coverage detected