14 lines
322 B
C#
14 lines
322 B
C#
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;
|
|
}
|
|
} |