in pkg/dataplane/internal/challenge/challenge_parser.go [605:624]
func (s *ChallengeContext) AllAuth_params() []IAuth_paramsContext {
children := s.GetChildren()
len := 0
for _, ctx := range children {
if _, ok := ctx.(IAuth_paramsContext); ok {
len++
}
}
tst := make([]IAuth_paramsContext, len)
i := 0
for _, ctx := range children {
if t, ok := ctx.(IAuth_paramsContext); ok {
tst[i] = t.(IAuth_paramsContext)
i++
}
}
return tst
}