-
Notifications
You must be signed in to change notification settings - Fork 114
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
7bit switch doesn't work but 8bit and unicode does #756
Comments
Hi @vinhtq115, thanks for the report. Could you append the lex spec or a shortened version of it that has the same symptom? |
Here you go: vc.flex.txt |
Thanks for that, I can reproduce the problem and confirm this is a bug. Will look into it. For now, I'd recommend using |
Currently fails in scanner generation (#756)
Previously, unicode char class initialisation was skipped for `%7bit` scanners, which after a previous refactor meant that initialisation was skipped completely. Fixes #756
Previously, unicode char class initialisation was skipped for `%7bit` scanners, which after a previous refactor meant that initialisation was skipped completely. Fixes #756
Currently fails in scanner generation (#756)
Previously, unicode char class initialisation was skipped for `%7bit` scanners, which after a previous refactor meant that initialisation was skipped completely. Fixes #756
commit bb37e0d Author: Gerwin Klein <lsf@jflex.de> AuthorDate: Sun May 3 10:39:20 2020 +0800 Commit: Gerwin Klein <lsf37@doclsf.de> CommitDate: Sun May 3 11:49:55 2020 +0800 initialise char classes on all paths Previously, unicode char class initialisation was skipped for `%7bit` scanners, which after a previous refactor meant that initialisation was skipped completely. Fixes #756 Updated from target/jflex-parent-1.8.2-SNAPSHOT-sources.jar
I'm trying to generate a specification for a language using
7bit
switch but JFlex won't generate anything. It always says:When I use
8bit
orunicode
switch, it works fine.I'm using JFlex 1.8.1.
The text was updated successfully, but these errors were encountered: