(e3)
| 1127 | this._finalizeComposition(true); |
| 1128 | } |
| 1129 | keydown(e3) { |
| 1130 | if (this._isComposing || this._isSendingComposition) { |
| 1131 | if (229 === e3.keyCode) return false; |
| 1132 | if (16 === e3.keyCode || 17 === e3.keyCode || 18 === e3.keyCode) return false; |
| 1133 | this._finalizeComposition(false); |
| 1134 | } |
| 1135 | return 229 !== e3.keyCode || (this._handleAnyTextareaChanges(), false); |
| 1136 | } |
| 1137 | _finalizeComposition(e3) { |
| 1138 | if (this._compositionView.classList.remove("active"), this._isComposing = false, e3) { |
| 1139 | const e4 = { start: this._compositionPosition.start, end: this._compositionPosition.end }; |
no test coverage detected