| 1191 | } |
| 1192 | |
| 1193 | std::any ParserVisitor::visitCreateList(CelParser::CreateListContext* ctx) { |
| 1194 | int64_t list_id = factory_.NextId(SourceRangeFromToken(ctx->op)); |
| 1195 | auto elems = visitList(ctx->elems); |
| 1196 | return ExprToAny(factory_.NewList(list_id, std::move(elems))); |
| 1197 | } |
| 1198 | |
| 1199 | std::vector<ListExprElement> ParserVisitor::visitList( |
| 1200 | CelParser::ListInitContext* ctx) { |
nothing calls this directly
no test coverage detected