cosmetics

This commit is contained in:
Sergey Chernov 2026-01-14 22:11:33 +03:00
parent ec28b219f3
commit b7fe04d65f
2 changed files with 3 additions and 7 deletions

View File

@ -112,7 +112,7 @@ open class ObjException(
)
} else {
// Fallback textual entry if StackTraceEntry class is not available in this scope
result.list += ObjString("?${pos.source.objSourceName}:${pos.line+1}:${pos.column+1}: ${pos.currentLine}")
result.list += ObjString("#${pos.source.objSourceName}:${pos.line+1}:${pos.column+1}: ${pos.currentLine}")
}
lastPos = pos
}

View File

@ -266,12 +266,8 @@ class StackTraceEntry(
/* Print this exception and its stack trace to standard output. */
fun Exception.printStackTrace() {
println(this)
var lastEntry = null
for( entry in stackTrace ) {
if( lastEntry == null || lastEntry !is StackTraceEntry || lastEntry.line != entry.line )
println("\tat "+entry.toString())
lastEntry = entry
}
for( entry in stackTrace )
println("\tat "+entry.toString())
}
/* Compile this string into a regular expression. */