Support for additional string functions.

This commit is contained in:
zer0sub 2019-06-02 12:45:46 +02:00
parent 3c4b078941
commit aef698bdbc
6 changed files with 272 additions and 19 deletions

View file

@ -73,7 +73,7 @@ type stringLiteral struct {
literalExpression
}
func String(value string) stringExpression {
func String(value string) StringExpression {
stringLiteral := stringLiteral{}
stringLiteral.literalExpression = *Literal(value)