Return the block for this BlockCall.
(&self, pool: &ValueListPool)
| 85 | |
| 86 | /// Return the block for this BlockCall. |
| 87 | pub fn block(&self, pool: &ValueListPool) -> Block { |
| 88 | let val = self.values.first(pool).unwrap(); |
| 89 | Self::value_to_block(val) |
| 90 | } |
| 91 | |
| 92 | /// Replace the block for this BlockCall. |
| 93 | pub fn set_block(&mut self, block: Block, pool: &mut ValueListPool) { |
no test coverage detected