Set the size of the stack frame for our function. Args: frame (int): frame size (in bytes) of our function
(self, frame)
| 358 | self.is_static = False # False by default |
| 359 | |
| 360 | def setFrame(self, frame): |
| 361 | """Set the size of the stack frame for our function. |
| 362 | |
| 363 | Args: |
| 364 | frame (int): frame size (in bytes) of our function |
| 365 | """ |
| 366 | self.frame = frame |
| 367 | |
| 368 | def setInstrCount(self, num_instrs): |
| 369 | """Set the number of code instructions in our function. |
no outgoing calls
no test coverage detected