MParser/Lexer/Trivia.cs
2018-03-31 21:51:53 +02:00

14 lines
285 B
C#

namespace Lexer
{
public class Trivia
{
public TriviaType Type { get; }
public string LiteralText { get; }
public Trivia(TriviaType type, string literalText)
{
Type = type;
LiteralText = literalText;
}
}
}