update changelog and version bump

This commit is contained in:
2025-12-11 23:33:17 -07:00
parent 098d689750
commit d3974ad590
9 changed files with 128 additions and 15 deletions

View File

@@ -44,10 +44,12 @@ public static class GlobalCode
public static bool GetSlangErrorLineFromICError(
Guid reference,
uint icErrorLine,
out uint slangSrc
out uint slangSrc,
out Range slangSpan
)
{
slangSrc = icErrorLine;
slangSpan = new Range { };
if (!sourceMaps.ContainsKey(reference))
{
@@ -62,6 +64,7 @@ public static class GlobalCode
}
slangSrc = foundRange[0].StartLine;
slangSpan = foundRange[0];
return true;
}