(source, keyword string, start int, end int)
| 388 | } |
| 389 | |
| 390 | func findKeywordAfter(source, keyword string, start int, end int) int { |
| 391 | if start < 0 { |
| 392 | start = 0 |
| 393 | } |
| 394 | if end > len(source) { |
| 395 | end = len(source) |
| 396 | } |
| 397 | return findKeywordOutsideSQL(source, keyword, start, end, false) |
| 398 | } |
| 399 | |
| 400 | func findKeywordOutsideSQL(source, keyword string, start, end int, last bool) int { |
| 401 | if start >= end { |
no test coverage detected