()
| 70 | func (st *MatchData) restoreCapture(s int, pos uint32) { st.captures[s] = pos } |
| 71 | |
| 72 | func (st *MatchData) CaptureLength() int { return len(st.captures) } |
| 73 | |
| 74 | func (st *MatchData) IsPosCapture(idx int) bool { return (st.captures[idx] & 1) == 1 } |
| 75 |
no outgoing calls
no test coverage detected