diff --git a/src/jvmMain/kotlin/dev/romainguy/kotlin/explorer/dex/DexTextArea.kt b/src/jvmMain/kotlin/dev/romainguy/kotlin/explorer/dex/DexTextArea.kt index 41dbcb6b..677526f3 100644 --- a/src/jvmMain/kotlin/dev/romainguy/kotlin/explorer/dex/DexTextArea.kt +++ b/src/jvmMain/kotlin/dev/romainguy/kotlin/explorer/dex/DexTextArea.kt @@ -22,8 +22,7 @@ import dev.romainguy.kotlin.explorer.ExplorerState private val DexJumpRegex = Regex("^.{9}[0-9a-fA-F]{4}: .+(?
[0-9a-fA-F]{4}) // (?[+-])[0-9a-fA-F]{4}$") private val DexAddressedRegex = Regex("^.{9}(?
[0-9a-fA-F]{4}): .+$") -private val DexLineNumberRegex = Regex("^(? +\\d+: )([0-9a-f]{4}: )") +private val DexLineNumberRegex = Regex("^(? +\\d+: )([0-9a-f]{4}: )", RegexOption.MULTILINE) class DexTextArea(explorerState: ExplorerState) : CodeTextArea(explorerState, DexJumpRegex, DexAddressedRegex, DexLineNumberRegex) -