Get the parameters on `block`.
(&self, block: Block)
| 1249 | |
| 1250 | /// Get the parameters on `block`. |
| 1251 | pub fn block_params(&self, block: Block) -> &[Value] { |
| 1252 | self.blocks[block].params(&self.value_lists) |
| 1253 | } |
| 1254 | |
| 1255 | /// Get the types of the parameters on `block`. |
| 1256 | pub fn block_param_types(&self, block: Block) -> impl Iterator<Item = Type> + '_ { |