Set the number of code instructions in our function. Args: num_instrs (int): number of instructions in the function
(self, num_instrs)
| 366 | self.frame = frame |
| 367 | |
| 368 | def setInstrCount(self, num_instrs): |
| 369 | """Set the number of code instructions in our function. |
| 370 | |
| 371 | Args: |
| 372 | num_instrs (int): number of instructions in the function |
| 373 | """ |
| 374 | self.instrs = num_instrs |
| 375 | |
| 376 | def recordBlock(self, block): |
| 377 | """Record a code block in our function's code flow. |
no outgoing calls
no test coverage detected