(sql string, pos int)
| 363 | } |
| 364 | |
| 365 | func hasLineCommentPrefix(sql string, pos int) bool { |
| 366 | return pos+1 < len(sql) && sql[pos] == '-' && sql[pos+1] == '-' |
| 367 | } |
| 368 | |
| 369 | func hasBlockCommentPrefix(sql string, pos int) bool { |
| 370 | return pos+1 < len(sql) && sql[pos] == '/' && sql[pos+1] == '*' |
no outgoing calls
no test coverage detected