We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e51455 commit 69d6716Copy full SHA for 69d6716
compiler/src/dotty/tools/dotc/profile/JsonNameTransformer.scala
@@ -30,7 +30,7 @@ object JsonNameTransformer {
30
buf.append(name.subSequence(0, i))
31
}
32
buf.append(op2code(c.toInt))
33
- } else if (c <= 0x1F || c > 0x7F) {
+ } else if (c <= 0x1F || c >= 0x7F) {
34
if (buf eq null) {
35
buf = new StringBuilder()
36
0 commit comments