| 27 | } |
| 28 | |
| 29 | type paramSearch struct { |
| 30 | parent ast.Node |
| 31 | rangeVar *ast.RangeVar |
| 32 | refs *[]paramRef |
| 33 | seen map[int]struct{} |
| 34 | errs *[]error |
| 35 | |
| 36 | // XXX: Gross state hack for limit |
| 37 | limitCount ast.Node |
| 38 | limitOffset ast.Node |
| 39 | } |
| 40 | |
| 41 | type limitCount struct { |
| 42 | } |
nothing calls this directly
no outgoing calls
no test coverage detected