in pkg/dataplane/internal/challenge/challenge_parser.go [2038:2057]
func (s *Quoted_stringContext) AllQuoted_pair() []IQuoted_pairContext {
children := s.GetChildren()
len := 0
for _, ctx := range children {
if _, ok := ctx.(IQuoted_pairContext); ok {
len++
}
}
tst := make([]IQuoted_pairContext, len)
i := 0
for _, ctx := range children {
if t, ok := ctx.(IQuoted_pairContext); ok {
tst[i] = t.(IQuoted_pairContext)
i++
}
}
return tst
}