WS top-level property
161s
WS ::= #x20 | #x9 | #xD | #xA /* #x20=space #x9=character tabulation #xD=carriage return #xA=new line */
Implementation
final WS = pattern('\x20\x09\x0D\x0A');
161s
WS ::= #x20 | #x9 | #xD | #xA /* #x20=space #x9=character tabulation #xD=carriage return #xA=new line */
final WS = pattern('\x20\x09\x0D\x0A');