NOTE: combineUTF16Surrogates is blocked by an unsupported `<<` shift op in the translator (Phase T.* gap, beyond #1/#2/#5). Even though Fix #6 resolves the package-const references in this body, the shift remains untranslated, so no lemma is attached here.
(high, low rune)
| 20 | // resolves the package-const references in this body, the shift remains |
| 21 | // untranslated, so no lemma is attached here. |
| 22 | func combineUTF16Surrogates(high, low rune) rune { |
| 23 | return supplementalPlanesOffset + (high-highSurrogateOffset)<<10 + (low - lowSurrogateOffset) |
| 24 | } |
| 25 | |
| 26 | const badHex = -1 |
| 27 |
no outgoing calls
no test coverage detected