Enhance compact representation of location

This commit is contained in:
ArtiSmarti
2016-10-21 23:31:14 +02:00
parent eafc56a44f
commit 8df668350e

View File

@@ -63,7 +63,7 @@ data class Location(val source: SourceLocation,
val file: String) : Compactable {
override fun compact(): String {
return "L/C=$source - Chars=$text - $file"
return "Line/Column=$source - CharRange=$text - $file"
}
companion object {