mirror of
https://github.com/irmen/prog8.git
synced 2024-11-20 03:32:05 +00:00
don't print weird position link for library files
This commit is contained in:
parent
b399b0f182
commit
44676756ae
@ -1,5 +1,6 @@
|
||||
package prog8.code.core
|
||||
|
||||
import prog8.code.core.SourceCode.Companion.libraryFilePrefix
|
||||
import java.nio.file.InvalidPathException
|
||||
import kotlin.io.path.Path
|
||||
import kotlin.io.path.absolute
|
||||
@ -7,9 +8,10 @@ import kotlin.io.path.absolute
|
||||
data class Position(val file: String, val line: Int, val startCol: Int, val endCol: Int) {
|
||||
override fun toString(): String = "[$file: line $line col ${startCol+1}-${endCol+1}]"
|
||||
fun toClickableStr(): String {
|
||||
if(this===DUMMY) {
|
||||
if(this===DUMMY)
|
||||
return ""
|
||||
}
|
||||
if(file.startsWith(libraryFilePrefix))
|
||||
return "$file:$line:$startCol:"
|
||||
return try {
|
||||
val path = Path(file).absolute().normalize().toString()
|
||||
"file://$path:$line:$startCol:"
|
||||
|
Loading…
Reference in New Issue
Block a user