(&mut self)
| 689 | } |
| 690 | |
| 691 | pub fn create_dummy_object(&mut self) -> Symbol<T> { |
| 692 | let ctx = self.get_current_ctx(); |
| 693 | Symbol { |
| 694 | r#type: None, |
| 695 | state: ObjectState::Other, |
| 696 | id: ctx, |
| 697 | data: T::default(), |
| 698 | } |
| 699 | } |
| 700 | |
| 701 | fn create_list_object(&mut self, ty: ast::Type) -> Symbol<T> { |
| 702 | let ctx = self.get_current_ctx(); |
no test coverage detected