mirror of
https://github.com/Cekis/SWG-ScriptConverter.git
synced 2026-07-31 00:16:00 -04:00
Add code
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
namespace ScriptConverter.Parser
|
||||
{
|
||||
static class CompilerError
|
||||
{
|
||||
public const string UnterminatedString = "Unterminated string";
|
||||
public const string UnexpectedEofString = "Unexpected end of file (bad escape sequence)";
|
||||
public const string InvalidEscapeSequence = "Invalid escape sequence '{0}'";
|
||||
public const string CharLiteralLength = "Character literals must be one byte long";
|
||||
public const string InvalidNumber = "Invalid {0} number '{1}'";
|
||||
|
||||
public const string ExpectedButFound = "Expected {0} but found {1}";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user