-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial unicode character support for identifiers
Summary: Test Plan: Added a test Reviewers: Subscribers: Tasks: Tags:
- Loading branch information
Showing
6 changed files
with
25,332 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
# Concatenate all the fragments into a .jj file. | ||
gendir='../target/generated-sources/javacc' | ||
mkdir -p $gendir | ||
cat javacc-options-java.txt nonreservedwords.txt reservedwords.txt sql-spec.txt presto-extensions.txt lexical-elements.txt > $gendir/parser_tmp.jjt | ||
awk -f ./compact_char_sets.awk < unicode-identifiers.txt > $gendir/compact-unicode-identifiers.txt | ||
#cp unicode-identifiers.txt $gendir/comcpat-unicode-identifiers.txt | ||
cat javacc-options-java.txt kw.txt sql-spec.txt presto-extensions.txt nonreservedwords.txt $gendir/comcpat-unicode-identifiers.txt lexical-elements.txt > $gendir/parser_tmp.jjt |
Oops, something went wrong.