You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the grammar only prevents the sequence !:. So someone could have a type like He!!o.
::= <any UTF8-octets except newline or parens or ":" or "!:" or whitespace>+
Personally, I would find this confusing to see but it also would greatly simplify this grammar rule to only be looking at characters rather than sequence of characters.
The text was updated successfully, but these errors were encountered:
epage
changed the title
Simplify parsing by preventing ! in Typoe?
Simplify parsing by preventing ! in Tyoe?
Oct 19, 2021
- ::= <any UTF8-octets except newline or parens or ":" or "!:" or whitespace>++ ::= <any UTF8-octets except newline or parens or ":" or "!" or whitespace>+
The idea being that a message like:
He!!o: some message
is both odd (harder to parse by computer and human) and inconsistent in what it allows as you can't then do
Currently, the grammar only prevents the sequence
!:
. So someone could have a type likeHe!!o
.Personally, I would find this confusing to see but it also would greatly simplify this grammar rule to only be looking at characters rather than sequence of characters.
The text was updated successfully, but these errors were encountered: