diff --git a/cmd/bind/parsing-complex.go b/cmd/bind/parsing-complex.go index d07f49a..6306edb 100644 --- a/cmd/bind/parsing-complex.go +++ b/cmd/bind/parsing-complex.go @@ -21,7 +21,7 @@ func parseComplex(data []byte) []string { line := scanner.Text() // skip lines where the first non-whitespace character is '#' or '//' - if regexp.MustCompile(`^(\s+)?(#|\/\/)`).MatchString(line) { + if regexp.MustCompile(`^(\s+)?(#|\/\/|\|)`).MatchString(line) { continue } diff --git a/cmd/bind/parsing-simple.go b/cmd/bind/parsing-simple.go index c76c440..71b775e 100644 --- a/cmd/bind/parsing-simple.go +++ b/cmd/bind/parsing-simple.go @@ -20,8 +20,8 @@ func parseSimple(data []byte) []string { for scanner.Scan() { line := scanner.Text() - // skip lines where the first non-whitespace character is '#' or '//' - if regexp.MustCompile(`^(\s+)?(#|\/\/)`).MatchString(line) { + // skip lines where the first non-whitespace character is '#' or '//' or '|' + if regexp.MustCompile(`^(\s+)?(#|\/\/|\|)`).MatchString(line) { continue }