This commit is contained in:
Rohan Singh
2019-01-23 22:52:45 -05:00
parent 3f69ec7987
commit ad50a19057
103 changed files with 5734 additions and 1 deletions
+13
View File
@@ -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}";
}
}