| 76 | CelValue result; |
| 77 | |
| 78 | std::string MakeLabel(int len) const { |
| 79 | std::string list_impl; |
| 80 | switch (this->list_impl) { |
| 81 | case ListImpl::kRhsConstant: |
| 82 | list_impl = "rhs_constant"; |
| 83 | break; |
| 84 | case ListImpl::kWrappedModern: |
| 85 | list_impl = "wrapped_modern"; |
| 86 | break; |
| 87 | case ListImpl::kLegacy: |
| 88 | list_impl = "legacy"; |
| 89 | break; |
| 90 | } |
| 91 | |
| 92 | return absl::StrCat(test_name, "/", list_impl, "/", len); |
| 93 | } |
| 94 | }; |
| 95 | |
| 96 | class ListStorage { |