Set the call order mapping: call invocation => set of call invocations that can reach it. Args: mapping (dict): mapping of the call order
(self, mapping)
| 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. |
| 386 | |
| 387 | Args: |
| 388 | mapping (dict): mapping of the call order |
| 389 | """ |
| 390 | self.call_order = mapping |
| 391 | |
| 392 | def markStatic(self): |
| 393 | """Mark our function as a non-exported (static) function.""" |
no outgoing calls
no test coverage detected