Initial commit to new repository
This commit is contained in:
15
.decompiledproj/AxCopilot/Services/LspLocation.cs
Normal file
15
.decompiledproj/AxCopilot/Services/LspLocation.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
namespace AxCopilot.Services;
|
||||
|
||||
public class LspLocation
|
||||
{
|
||||
public string FilePath { get; init; } = "";
|
||||
|
||||
public int Line { get; init; }
|
||||
|
||||
public int Character { get; init; }
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return $"{FilePath}:{Line + 1}:{Character + 1}";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user