Add Unicode XID validation when registering types and parsing attribute names. Python's type-bridge validates _is_xid_start() / _is_xid_continue() per Unicode spec.
Use unicode.IsLetter for start, unicode.IsLetter || unicode.IsDigit || '-' || '_' for continue.
Files: gotype/reserved.go or gotype/tags.go, plus unit tests with non-ASCII names
Add Unicode XID validation when registering types and parsing attribute names. Python's type-bridge validates
_is_xid_start()/_is_xid_continue()per Unicode spec.Use
unicode.IsLetterfor start,unicode.IsLetter || unicode.IsDigit || '-' || '_'for continue.Files:
gotype/reserved.goorgotype/tags.go, plus unit tests with non-ASCII names