(code, reason)
| 222 | |
| 223 | |
| 224 | function onClose(code, reason) { |
| 225 | destroy.call(this); |
| 226 | this._readyState = CLOSED; |
| 227 | |
| 228 | this.dispatchEvent(createCloseEvent(code, reason || '')); |
| 229 | } |
| 230 | |
| 231 | |
| 232 | function onMessage(message) { |
nothing calls this directly
no test coverage detected