Gets the context of a function declaration
(&self, id: usize)
| 69 | |
| 70 | /// Gets the context of a function declaration |
| 71 | pub fn get_context(&self, id: usize) -> Option<&Context> { |
| 72 | self.funs.get(&id).map(|f| &f.context) |
| 73 | } |
| 74 | |
| 75 | /// Gets the block of a function declaration |
| 76 | pub fn get_block(&self, id: usize) -> Option<&Block> { |
no outgoing calls
no test coverage detected