(&self)
| 437 | } |
| 438 | |
| 439 | fn clone_as_boxed(&self) -> Box<dyn Val> { |
| 440 | Box::new(Self { |
| 441 | r#type: Type::new_opaque_type(self.val.runtime_type_name().to_owned()), |
| 442 | val: self.val.clone(), |
| 443 | }) |
| 444 | } |
| 445 | } |
| 446 | |
| 447 | impl OpaqueVal { |
no test coverage detected