(chunk)
| 611 | |
| 612 | return { |
| 613 | push(chunk) { |
| 614 | buf += chunk; |
| 615 | return currentResult(); |
| 616 | }, |
| 617 | set(fullText) { |
| 618 | if (fullText.length < buf.length || !fullText.startsWith(buf)) { |
| 619 | reset(); |
nothing calls this directly
no test coverage detected