MCPcopy Create free account
hub / github.com/bytebase/bytebase / skipLineComment

Function skipLineComment

backend/plugin/parser/tsql/backup.go:491–496  ·  view source on GitHub ↗
(source string, start, end int)

Source from the content-addressed store, hash-verified

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

Callers 1

findKeywordOutsideSQLFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected