-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Correctly handle unicode ranges #26
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #26 +/- ##
==========================================
Coverage 100.00% 100.00%
==========================================
Files 4 4
Lines 2683 2804 +121
==========================================
+ Hits 2683 2804 +121 ☔ View full report in Codecov by Sentry. |
This should correctly generate UTF-16 ranges for Peggy from any valid ABNF range. Fixes #25.
@@ -5,3 +5,4 @@ examples/*.peggy | |||
examples/*.pest | |||
node_modules | |||
t.abnf | |||
.cert/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
unrelated?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, its unrelated, but intentional. I've started using hostlocal in local workflows.
OK, this is as good as this patch is going to get. I'll take another look at it in the late morning (Denver time) before I land it. |
Sgtm
El El vie, ene 3, 2025 a la(s) 6:38 p.m., Joe Hildebrand <
***@***.***> escribió:
… OK, this is as good as this patch is going to get. I'll take another look
at it in the late morning (Denver time) before I land it.
—
Reply to this email directly, view it on GitHub
<#26 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAGQZM6ZZOMGYBA7AYH6B7L2I4UPJAVCNFSM6AAAAABURLXSOOVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDKNRZHE3DMNJQG4>
.
You are receiving this because you commented.Message ID:
***@***.***>
|
I was wrong; this is a lot more readable, IMO. |
This should correctly generate UTF-16 ranges for
Peggy from any valid ABNF range.
Fixes #25.