Mark our function as a non-exported (static) function.
(self)
| 390 | self.call_order = mapping |
| 391 | |
| 392 | def markStatic(self): |
| 393 | """Mark our function as a non-exported (static) function.""" |
| 394 | self.is_static = True |
| 395 | |
| 396 | def used(self): |
| 397 | """Check if our function is used, i.e. has ingoing/outgoing reference to other functions. |
no outgoing calls
no test coverage detected