(l byte)
| 704 | } |
| 705 | |
| 706 | func (n *node) findStaticChild(l byte) *node { |
| 707 | for _, c := range n.staticChildren { |
| 708 | if c.label == l { |
| 709 | return c |
| 710 | } |
| 711 | } |
| 712 | return nil |
| 713 | } |
| 714 | |
| 715 | func (n *node) findChildWithLabel(l byte) *node { |
| 716 | if c := n.findStaticChild(l); c != nil { |
no outgoing calls
no test coverage detected