From 03b1cc13ee155301dffe5778cec04ef599826dba Mon Sep 17 00:00:00 2001 From: nhyatt Date: Sat, 9 Dec 2023 15:09:38 -0600 Subject: [PATCH] adds check for | character --- cmd/bind/parsing-complex.go | 2 +- cmd/bind/parsing-simple.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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 }