Returns the parent graph that contains the node. # Returns Parent graph of the node
(&self)
| 427 | /// |
| 428 | /// Parent graph of the node |
| 429 | pub fn get_graph(&self) -> Graph { |
| 430 | self.body.borrow().graph.upgrade() |
| 431 | } |
| 432 | |
| 433 | /// Returns the dependency nodes that are used to compute the value in the current node. |
| 434 | /// |
no test coverage detected