(&self)
| 83 | } |
| 84 | |
| 85 | fn as_any(&self) -> &dyn Any { |
| 86 | self |
| 87 | } |
| 88 | |
| 89 | fn index_op(&self, index: &Box<dyn Value>) -> Result<Box<dyn Value>, String> { |
| 90 | if let Some(index) = index.as_any().downcast_ref::<IntValue>() { |
no outgoing calls
no test coverage detected