Currently the syntax generation code only works on Java 8 (and below) as the latest JDK versions no longer contain some classes we used for reflection.
These missing classes are:
java.util.regex.Pattern$CharPropertyNames
java.util.regex.UnicodeProp
To fix this the reflection code needs replacing as there are no straightforward replacements for these classes.
I have already done some work on building the new reflection code.
Currently the syntax generation code only works on Java 8 (and below) as the latest JDK versions no longer contain some classes we used for reflection.
These missing classes are:
java.util.regex.Pattern$CharPropertyNamesjava.util.regex.UnicodePropTo fix this the reflection code needs replacing as there are no straightforward replacements for these classes.
I have already done some work on building the new reflection code.