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.
Parser.kt
1 parent c8eb9b9 commit c0a7cefCopy full SHA for c0a7cef
core/common/src/internal/format/parser/Parser.kt
@@ -96,7 +96,7 @@ internal fun <T> List<ParserStructure<T>>.concat(): ParserStructure<T> {
96
var currentNumberSpan: MutableList<NumberConsumer<T>>? = null
97
val unconditionalModifications = mutableListOf<UnconditionalModification<T>>()
98
// joining together the number consumers in this parser before the first alternative;
99
- // collecting the unconditional modifications to push them to the end of all the parser's branches.
+ // collecting the unconditional modifications.
100
for (op in operations) {
101
if (op is NumberSpanParserOperation) {
102
if (currentNumberSpan != null) {
0 commit comments