| 172 | // stack_size: the size of the stack |
| 173 | // upper_pad: the amount of extra space above stack |
| 174 | export class ChainBase { |
| 175 | constructor(stack_size = 0x1000, upper_pad = 0x10000) { |
| 176 | this._is_dirty = false; |
| 177 | this.position = 0; |
nothing calls this directly
no outgoing calls
no test coverage detected