(v String, start int)
| 270 | } |
| 271 | |
| 272 | func (i *importedString) index(v String, start int) int { |
| 273 | i.ensureScanned() |
| 274 | if i.u != nil { |
| 275 | return i.u.index(v, start) |
| 276 | } |
| 277 | return asciiString(i.s).index(v, start) |
| 278 | } |
| 279 | |
| 280 | func (i *importedString) lastIndex(v String, pos int) int { |
| 281 | i.ensureScanned() |
nothing calls this directly
no test coverage detected