Skip to content

Commit

Permalink
:=
Browse files Browse the repository at this point in the history
  • Loading branch information
eggrobin committed Jun 26, 2024
1 parent d480df1 commit 8a33b28
Show file tree
Hide file tree
Showing 3 changed files with 95 additions and 95 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1113,7 +1113,7 @@ protected String _getVersion() {
private static void letLine(ParsePosition pp, String source) throws ParseException {
expectToken("$", pp, source);
final String variable = Lookahead.oneTokenNoSpace(pp, source).consume();
expectToken("=", pp, source);
expectToken(":=", pp, source);
final int valueStart = pp.getIndex();
final UnicodeSet valueSet = parseUnicodeSet(source, pp);
valueSet.complement().complement();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

\p{Identifier_Type=Not_NFKC} = [\p{NFKC_QC=No}-\p{Deprecated}-\p{Default_Ignorable_Code_Point}]

Let $Strongly_Restricted = [\p{Identifier_Type=Not_Character}\p{Identifier_Type=Deprecated}\p{Identifier_Type=Default_Ignorable}\p{Identifier_Type=Not_NFKC}]
Let $Strongly_Restricted := [\p{Identifier_Type=Not_Character}\p{Identifier_Type=Deprecated}\p{Identifier_Type=Default_Ignorable}\p{Identifier_Type=Not_NFKC}]

\p{Identifier_Type=Not_XID} = [\P{XID_Continue}-$Strongly_Restricted-\p{Identifier_Type=Inclusion}]

Expand Down
Loading

0 comments on commit 8a33b28

Please sign in to comment.