We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a59f410 commit 8b2b51fCopy full SHA for 8b2b51f
language-server/src/main/kotlin/tools/samt/ls/Mapping.kt
@@ -28,6 +28,6 @@ fun DiagnosticMessage.toDiagnostic(): Diagnostic? {
28
fun SamtLocation.toRange(): Range {
29
return Range(
30
Position(start.row, start.col),
31
- Position(start.row, end.col)
+ Position(end.row, end.col)
32
)
33
}
0 commit comments