File tree Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -24,14 +24,14 @@ form.
2424whiteSpace ::= ‘\u0020’ | ‘\u0009’ | ‘\u000D’ | ‘\u000A’
2525upper ::= ‘A’ | … | ‘Z’ | ‘\$’ | ‘_’ “… and Unicode category Lu”
2626lower ::= ‘a’ | … | ‘z’ “… and Unicode category Ll”
27- letter ::= upper | lower “… and Unicode categories Lo, Lt, Nl”
27+ letter ::= upper | lower “… and Unicode categories Lo, Lt, Lm, Nl”
2828digit ::= ‘0’ | … | ‘9’
2929paren ::= ‘(’ | ‘)’ | ‘[’ | ‘]’ | ‘{’ | ‘}’ | ‘'(’ | ‘'[’ | ‘'{’
3030delim ::= ‘`’ | ‘'’ | ‘"’ | ‘.’ | ‘;’ | ‘,’
31- opchar ::= “printableChar not matched by (whiteSpace | upper | lower |
32- letter | digit | paren | delim | opchar | Unicode_Sm |
33- Unicode_So) ”
34- printableChar ::= “all characters in [\u0020, \u007F ] inclusive”
31+ opchar ::= ‘!’ | ‘#’ | ‘%’ | ‘&’ | ‘*’ | ‘+’ | ‘-’ | ‘/’ | ‘:’ |
32+ ‘<’ | ‘=’ | ‘>’ | ‘?’ | ‘@’ | ‘\’ | ‘^’ | ‘|’ | ‘~’
33+ “… and Unicode categories Sm, So ”
34+ printableChar ::= “all characters in [\u0020, \u007E ] inclusive”
3535charEscapeSeq ::= ‘\’ (‘b’ | ‘t’ | ‘n’ | ‘f’ | ‘r’ | ‘"’ | ‘'’ | ‘\’)
3636
3737op ::= opchar {opchar}
Original file line number Diff line number Diff line change @@ -25,14 +25,14 @@ form.
2525whiteSpace ::= ‘\u0020’ | ‘\u0009’ | ‘\u000D’ | ‘\u000A’
2626upper ::= ‘A’ | … | ‘Z’ | ‘\$’ | ‘_’ “… and Unicode category Lu”
2727lower ::= ‘a’ | … | ‘z’ “… and Unicode category Ll”
28- letter ::= upper | lower “… and Unicode categories Lo, Lt, Nl”
28+ letter ::= upper | lower “… and Unicode categories Lo, Lt, Lm, Nl”
2929digit ::= ‘0’ | … | ‘9’
3030paren ::= ‘(’ | ‘)’ | ‘[’ | ‘]’ | ‘{’ | ‘}’ | ‘'(’ | ‘'[’ | ‘'{’
3131delim ::= ‘`’ | ‘'’ | ‘"’ | ‘.’ | ‘;’ | ‘,’
32- opchar ::= “printableChar not matched by (whiteSpace | upper |
33- lower | letter | digit | paren | delim | opchar |
34- Unicode_Sm | Unicode_So) ”
35- printableChar ::= “all characters in [\u0020, \u007F ] inclusive”
32+ opchar ::= ‘!’ | ‘#’ | ‘%’ | ‘&’ | ‘*’ | ‘+’ | ‘-’ | ‘/’ | ‘:’ |
33+ ‘<’ | ‘=’ | ‘>’ | ‘?’ | ‘@’ | ‘\’ | ‘^’ | ‘|’ | ‘~’
34+ “… and Unicode categories Sm, So ”
35+ printableChar ::= “all characters in [\u0020, \u007E ] inclusive”
3636charEscapeSeq ::= ‘\’ (‘b’ | ‘t’ | ‘n’ | ‘f’ | ‘r’ | ‘"’ | ‘'’ | ‘\’)
3737
3838op ::= opchar {opchar}
You can’t perform that action at this time.
0 commit comments