AndroidIDEOfficial / android-tree-sitter

Tree Sitter for Android
GNU Lesser General Public License v2.1
50 stars 19 forks source link

Treesitter-Java does not support Chinese identifiers #63

Closed ZeroAicy closed 1 month ago

ZeroAicy commented 4 months ago

Java with Chinese identifiers may encounter parsing errors

//https://docs.oracle.com/javase/specs/jls/se8/html/jls-3.html#jls-IdentifierChars identifier: $ => /[\p{L}_$][\p{L}\p{Nd}\u00A2_$]*/,

Did you not handle Unicode characters that Java can support

ZeroAicy commented 4 months ago

identifier: _ => /[\p{XIDStart}$][\p{XIDContinue}\u00A2$]*/, ???

itsaky commented 1 month ago

Report this in tree-sitter-java.