MCPcopy
hub / github.com/uber/aresdb / visitList

Method visitList

query/sql/sql_parser.go:197–203  ·  view source on GitHub ↗
(ctxs []antlr.ParserRuleContext)

Source from the content-addressed store, hash-verified

195}
196
197func (v *ASTBuilder) visitList(ctxs []antlr.ParserRuleContext) interface{} {
198 var res = make([]interface{}, len(ctxs))
199 for i, ctx := range ctxs {
200 res[i] = v.Visit(ctx)
201 }
202 return res
203}
204
205// ********************** Visit SQL grammar starts ********************
206

Callers

nothing calls this directly

Calls 1

VisitMethod · 0.95

Tested by

no test coverage detected