- Added a few more backmappings

This commit is contained in:
Tristan B. Velloza Kildaire 2023-01-11 11:56:12 +02:00
parent c51712e275
commit 0d877f81a4
1 changed files with 12 additions and 0 deletions

View File

@ -505,6 +505,18 @@ public string getCharacter(SymbolType symbolIn)
{
return "<";
}
else if(symbolIn == SymbolType.SMALLER_THAN_OR_EQUALS)
{
return "<=";
}
else if(symbolIn == SymbolType.GREATER_THAN)
{
return ">";
}
else if(symbolIn == SymbolType.GREATER_THAN_OR_EQUALS)
{
return ">=";
}
else
{
gprintln("getCharacter: No back-mapping for "~to!(string)(symbolIn), DebugType.ERROR);