(NewState: any, arg0?: any)
| 190 | // |
| 191 | |
| 192 | _setState(NewState: any, arg0?: any) { |
| 193 | if (!this._disposed) { |
| 194 | this._state && this._state.exit(); |
| 195 | this._state = new NewState(); |
| 196 | this._state.machine = this; |
| 197 | this._state.enter(arg0); |
| 198 | } |
| 199 | } |
| 200 | |
| 201 | // Triggers arbitrary app code |
| 202 | _fireEvent(eventName: string, options?: { detail?: any; cancelable?: boolean; }): boolean { |
no test coverage detected