MCPcopy Create free account
hub / github.com/cel-expr/cel-cpp / PushListDeps

Function PushListDeps

eval/public/ast_rewrite.cc:251–258  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

249}
250
251void PushListDeps(CreateList* list_expr, const SourceInfo* source_info,
252 std::stack<StackRecord>* stack) {
253 auto& elements = *list_expr->mutable_elements();
254 for (auto it = elements.rbegin(); it != elements.rend(); ++it) {
255 auto& element = *it;
256 stack->push(StackRecord(&element, source_info));
257 }
258}
259
260void PushStructDeps(CreateStruct* struct_expr, const SourceInfo* source_info,
261 std::stack<StackRecord>* stack) {

Callers 1

operator()Method · 0.70

Calls 1

StackRecordClass · 0.70

Tested by

no test coverage detected