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
Due to the double quotes, this indicates a literal string match, and no escaping is done. In fact, we could probably delete this line, since \n is already included as a part of $whitechar:
The specific sequence of characters
\n ->
fails to parse:however, the following works:
Since only
\n
triggers this, I suspect the parser might be inappropriately recognizing the\n
string escape sequence outside of a string literal.The text was updated successfully, but these errors were encountered: