(source string, start, end int)
| 489 | } |
| 490 | |
| 491 | func skipLineComment(source string, start, end int) int { |
| 492 | for start < end && source[start] != '\n' { |
| 493 | start++ |
| 494 | } |
| 495 | return start |
| 496 | } |
| 497 | |
| 498 | func skipBlockComment(source string, start, end int) int { |
| 499 | depth := 1 |
no outgoing calls
no test coverage detected