mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-20 19:57:53 -05:00
Add ZoneDefinition Lexer
This commit is contained in:
@ -14,6 +14,12 @@ SimpleParserValue SimpleParserValue::EndOfFile(const TokenPos pos)
|
||||
return pv;
|
||||
}
|
||||
|
||||
SimpleParserValue SimpleParserValue::NewLine(const TokenPos pos)
|
||||
{
|
||||
SimpleParserValue pv(pos, SimpleParserValueType::NEW_LINE);
|
||||
return pv;
|
||||
}
|
||||
|
||||
SimpleParserValue SimpleParserValue::Character(const TokenPos pos, const char c)
|
||||
{
|
||||
SimpleParserValue pv(pos, SimpleParserValueType::CHARACTER);
|
||||
|
Reference in New Issue
Block a user