(i, j int)
| 585 | |
| 586 | func (o orderSyms) Len() int { return len(o.v) } |
| 587 | func (o orderSyms) Less(i, j int) bool { return o.less(o.v[i], o.v[j]) } |
| 588 | func (o orderSyms) Swap(i, j int) { o.v[i], o.v[j] = o.v[j], o.v[i] } |
| 589 | |
| 590 | // nodesPerSymbol classifies nodes into a group of symbols. |
nothing calls this directly
no outgoing calls
no test coverage detected