func()

in pkg/dataplane/internal/challenge/challenge_parser.go [933:951]


func (s *Auth_paramsContext) Auth_param(i int) IAuth_paramContext {
	var t antlr.RuleContext
	j := 0
	for _, ctx := range s.GetChildren() {
		if _, ok := ctx.(IAuth_paramContext); ok {
			if j == i {
				t = ctx.(antlr.RuleContext)
				break
			}
			j++
		}
	}

	if t == nil {
		return nil
	}

	return t.(IAuth_paramContext)
}