If I try to assert that a message is the following string
"Username '(username)' is already taken"
I get an error message that it is not valid ChimeraScript, because ' is not a supported character. Strings need to support more characters (spaces, special characters, etc). Might need a new string type in the grammar as we want to keep a restricted set of string characters for things like function or variable names.
If I try to assert that a message is the following string
I get an error message that it is not valid ChimeraScript, because
'
is not a supported character. Strings need to support more characters (spaces, special characters, etc). Might need a new string type in the grammar as we want to keep a restricted set of string characters for things like function or variable names.