| 116 | ModernListStorage(Value x, Value y) : x_(std::move(x)), y_(std::move(y)) {} |
| 117 | |
| 118 | CelValue x() { |
| 119 | return interop_internal::ModernValueToLegacyValueOrDie(&arena_, x_); |
| 120 | } |
| 121 | CelValue y() { |
| 122 | return interop_internal::ModernValueToLegacyValueOrDie(&arena_, y_); |
| 123 | } |
nothing calls this directly
no test coverage detected