IKVM11  11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
DiagnosticLocation.cs
Go to the documentation of this file.
1using System;
2
4{
5
14 readonly struct DiagnosticLocation(string Path, int StartLine, int StartColumn, int EndLine, int EndColumn)
15 {
16
20 public readonly string Path = Path;
21
25 public readonly int StartLine = StartLine;
26
30 public readonly int StartColumn = StartColumn;
31
35 public readonly int EndLine = EndLine;
36
40 public readonly int EndColumn = EndColumn;
41
42 }
43
44}
readonly struct DiagnosticLocation(string Path, int StartLine, int StartColumn, int EndLine, int EndColumn)
Describes the location of a diagnostic event.