Minor, add temporary workaround for KT-42492
This commit is contained in:
+1
-1
@@ -83,7 +83,7 @@ private fun Reader.parseNextArgument(): String? {
|
|||||||
private fun Reader.consumeRestOfQuotedSequence(sb: StringBuilder, quote: Char) {
|
private fun Reader.consumeRestOfQuotedSequence(sb: StringBuilder, quote: Char) {
|
||||||
var ch = nextChar()
|
var ch = nextChar()
|
||||||
while (ch != null && ch != quote) {
|
while (ch != null && ch != quote) {
|
||||||
if (ch == BACKSLASH) nextChar()?.apply(sb::append) else sb.append(ch)
|
if (ch == BACKSLASH) nextChar()?.let { sb.append(it) } else sb.append(ch)
|
||||||
ch = nextChar()
|
ch = nextChar()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user