(value)
| 11 | } |
| 12 | |
| 13 | push(value) { |
| 14 | super.push(value); |
| 15 | if (this._min == null || value <= this._min) { |
| 16 | this._min = value; |
| 17 | this._minStack.push(value); |
| 18 | } |
| 19 | } |
| 20 | |
| 21 | pop() { |
| 22 | let value = super.pop(); |
no outgoing calls
no test coverage detected