Implemented `getStringLiteral()` for StringExpression symbol type

This commit is contained in:
Tristan B. Velloza Kildaire 2022-07-26 09:58:45 +02:00
parent 7e9e303a1c
commit e2157f428c
1 changed files with 5 additions and 0 deletions

View File

@ -12,6 +12,11 @@ public class StringExpression : Expression
{
this.ztring = ztring;
}
public string getStringLiteral()
{
return ztring;
}
}
public class OperatorExpression : Expression