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