commit | b2dffb0bb89e571b4bd0de24343cd17b1cef3125 | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <[email protected]> | Wed Apr 27 13:15:11 2022 +0000 |
committer | Android Build Coastguard Worker <[email protected]> | Wed Apr 27 13:15:11 2022 +0000 |
tree | 2f638b0af631bc4d9825f4ea5d5afa19e188b68a | |
parent | 869fec56d6999075fe2c0417491cbe8851e78a19 [diff] | |
parent | d9b77fd7cfd092afd5776b062fb2de36ba7c5218 [diff] |
Snap for 8505378 from d9b77fd7cfd092afd5776b062fb2de36ba7c5218 to mainline-go-adbd-release Change-Id: I5fe76d13bce31680fbfb76a089f65534737f33b6
Determine if a char
is a valid identifier for a parser and/or lexer according to Unicode Standard Annex #31 rules.
extern crate unicode_xid; use unicode_xid::UnicodeXID; fn main() { let ch = 'a'; println!("Is {} a valid start of an identifier? {}", ch, UnicodeXID::is_xid_start(ch)); }
unicode-xid supports a no_std
feature. This eliminates dependence on std, and instead uses equivalent functions from core.