mirror of
https://github.com/OlivierGuinart/Merlin32Language.git
synced 2026-03-11 18:41:37 +00:00
17 lines
346 B
C#
17 lines
346 B
C#
using Microsoft.VisualStudio.Text;
|
|
|
|
namespace VSMerlin32.Coloring.Data
|
|
{
|
|
internal class SnapshotHelper
|
|
{
|
|
public SnapshotSpan Snapshot { get; private set; }
|
|
public Merlin32TokenTypes TokenType { get; private set; }
|
|
|
|
public SnapshotHelper(SnapshotSpan span, Merlin32TokenTypes type)
|
|
{
|
|
Snapshot = span;
|
|
TokenType = type;
|
|
}
|
|
}
|
|
}
|