(&self, index: usize)
| 63 | } |
| 64 | |
| 65 | pub fn get(&self, index: usize) -> Option<Value<'gc>> { |
| 66 | self.data.get(index).copied() |
| 67 | } |
| 68 | |
| 69 | pub fn set(&mut self, index: usize, value: Value<'gc>) -> Result<(), &'static str> { |
| 70 | match self.kind { |
no outgoing calls
no test coverage detected