IKVM11  11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
IkvmToolDiagnosticEventLocation.cs
Go to the documentation of this file.
2{
3
11 public readonly record struct IkvmToolDiagnosticEventLocation(string? Path, int StartLine, int StartColumn, int EndLine, int EndColumn)
12 {
13
17 public string? Path { get; } = Path;
18
22 public int StartLine { get; } = StartLine;
23
27 public int StartColumn { get; } = StartColumn;
28
32 public int EndLine { get; } = EndLine;
33
37 public int EndColumn { get; } = EndColumn;
38
39 }
40
41}
readonly record struct IkvmToolDiagnosticEventLocation(string? Path, int StartLine, int StartColumn, int EndLine, int EndColumn)
Represents the location of a diagnostic event.