MParser/Lexer/TriviaType.cs

10 lines
140 B
C#

namespace Lexer
{
public enum TriviaType
{
Whitespace,
NewLine,
Comment,
MultiLineComment
}
}