fix parser

This commit is contained in:
InsanusMokrassar 2025-01-08 12:22:29 +06:00
parent 08ef7281e5
commit 409ca3770f
2 changed files with 8 additions and 0 deletions

View File

@ -2,6 +2,8 @@
## 2.7.1
* Fixes in parser and checker
## 2.7.0
* `Version`:

View File

@ -43,7 +43,9 @@ private fun <T> createSimpleScheduler(from: String, dataRange: IntRange, dataCon
* 1.
* * "\\d" -> 2
* * "\\*" -> 4
* * "F" -> 7
* * "f" -> 7
* * "L" -> 7
* * "l" -> 7
* * "/" -> 6
* 2.
@ -55,6 +57,7 @@ private fun <T> createSimpleScheduler(from: String, dataRange: IntRange, dataCon
* * "o" -> 10
* * "w" -> 10
* 3.
* * "L" -> 7
* * "l" -> 7
* * "\\d" -> 8
* 4.
@ -78,7 +81,9 @@ private val checkIncomingPartTransitionsMap = listOf(
listOf( // 0
Regex("\\d") to 1,
Regex("\\*") to 3,
Regex("F") to 6,
Regex("f") to 6,
Regex("L") to 6,
Regex("l") to 6,
Regex("/") to 5,
),
@ -92,6 +97,7 @@ private val checkIncomingPartTransitionsMap = listOf(
Regex("w") to 9,
),
listOf( // 2
Regex("L") to 6,
Regex("l") to 6,
Regex("\\d") to 7,
),