()
| 1533 | type filterTreeStack struct{ a []*FilterTree } |
| 1534 | |
| 1535 | func (s *filterTreeStack) empty() bool { return len(s.a) == 0 } |
| 1536 | func (s *filterTreeStack) size() int { return len(s.a) } |
| 1537 | func (s *filterTreeStack) push(t *FilterTree) { s.a = append(s.a, t) } |
| 1538 |
no outgoing calls
no test coverage detected