| 55 | } |
| 56 | |
| 57 | Maybe<Shape> FlatShape::ToShape() const { |
| 58 | const auto& shape = std::make_shared<Shape>(); |
| 59 | JUST(ToShape(shape.get())); |
| 60 | return shape; |
| 61 | } |
| 62 | |
| 63 | Maybe<void> FlatShape::ToShape(Shape* shape) const { |
| 64 | DimVector dim_vec; |
no test coverage detected