(b byte)
| 518 | } |
| 519 | |
| 520 | func isSpaceByte(b byte) bool { |
| 521 | return b == ' ' || b == '\t' || b == '\n' || b == '\r' |
| 522 | } |
| 523 | |
| 524 | // lineOffsetToBytePos converts a 1-based line number and 0-based character |
| 525 | // (rune) offset to a 0-based byte position in the string. |
no outgoing calls
no test coverage detected