Get the number of parameters on `block`.
(&self, block: Block)
| 1244 | |
| 1245 | /// Get the number of parameters on `block`. |
| 1246 | pub fn num_block_params(&self, block: Block) -> usize { |
| 1247 | self.blocks[block].params(&self.value_lists).len() |
| 1248 | } |
| 1249 | |
| 1250 | /// Get the parameters on `block`. |
| 1251 | pub fn block_params(&self, block: Block) -> &[Value] { |
no test coverage detected