(f filters.FilterContext)
| 730 | } |
| 731 | |
| 732 | func iterateRequestCookie(f filters.FilterContext) func(*lua.LState) int { |
| 733 | return func(s *lua.LState) int { |
| 734 | s.Push(s.NewFunction(nextCookie(f.Request().Cookies()))) |
| 735 | return 1 |
| 736 | } |
| 737 | } |
| 738 | |
| 739 | func nextCookie(cookies []*http.Cookie) func(*lua.LState) int { |
| 740 | return func(s *lua.LState) int { |
no test coverage detected
searching dependent graphs…