func()

in pkg/dataplane/internal/challenge/challenge_parser.go [912:931]


func (s *Auth_paramsContext) AllAuth_param() []IAuth_paramContext {
	children := s.GetChildren()
	len := 0
	for _, ctx := range children {
		if _, ok := ctx.(IAuth_paramContext); ok {
			len++
		}
	}

	tst := make([]IAuth_paramContext, len)
	i := 0
	for _, ctx := range children {
		if t, ok := ctx.(IAuth_paramContext); ok {
			tst[i] = t.(IAuth_paramContext)
			i++
		}
	}

	return tst
}