type
SyntaxStr
src
@Js
@Serializable
const class SyntaxStr : Obj
Syntax rules for a string or character literal
fields
delimiter |
Token which delimits the start and end of the string. |
---|---|
delimiterEnd |
Token which delimits the end of the string, or if null, then |
escape |
Escape character placed before ending delimiter to indicate the delimiter is part of the string, not the end. |
multiLine |
Can this string literal span multiple lines |
Slot Details
delimiter
src
const Str delimiter := "\""
Token which delimits the start and end of the string. If the end delimiter is different, then also set the delimiterEnd
field.