(tlist)
| 251 | |
| 252 | @recurse(sql.Identifier) |
| 253 | def group_identifier(tlist): |
| 254 | ttypes = (T.String.Symbol, T.Name) |
| 255 | |
| 256 | tidx, token = tlist.token_next_by(t=ttypes) |
| 257 | while token: |
| 258 | tlist.group_tokens(sql.Identifier, tidx, tidx) |
| 259 | tidx, token = tlist.token_next_by(t=ttypes, idx=tidx) |
| 260 | |
| 261 | |
| 262 | @recurse(sql.Over) |
nothing calls this directly
no test coverage detected
searching dependent graphs…