namespace MycroForge.Core.CodeGen; public class SourceMatch { public readonly int StartIndex; public readonly string Text; public int EndIndex => StartIndex + Text.Length; public SourceMatch(int startIndex, string text) { StartIndex = startIndex; Text = text; } }