()
| 134 | // Makes a shallow copy of the current states |
| 135 | // and push it into the push pop stack |
| 136 | push() { |
| 137 | this._pushPopDepth++; |
| 138 | this._pushPopStack.push(this.states.takeDiff()); |
| 139 | } |
| 140 | |
| 141 | // Pop the previous states out of the push pop stack and |
| 142 | // assign it back to the current state |
no test coverage detected