Record a code block in our function's code flow. Args: block (int): number of instructions in the given code block
(self, block)
| 374 | self.instrs = num_instrs |
| 375 | |
| 376 | def recordBlock(self, block): |
| 377 | """Record a code block in our function's code flow. |
| 378 | |
| 379 | Args: |
| 380 | block (int): number of instructions in the given code block |
| 381 | """ |
| 382 | self.blocks.append(block) |
| 383 | |
| 384 | def setCallOrder(self, mapping): |
| 385 | """Set the call order mapping: call invocation => set of call invocations that can reach it. |
no outgoing calls
no test coverage detected