commit | 19b50d7e67e22a2cb68df7835321f8361db0cb1a | [log] [tgz] |
---|---|---|
author | Chih-Hung Hsieh <[email protected]> | Mon Aug 03 14:14:34 2020 -0700 |
committer | David Dietrich <[email protected]> | Tue Aug 04 18:16:06 2020 +0000 |
tree | f797216b35764bd1fe77fe7a569c9992241a6048 | |
parent | d11bf65e460f0b4906d04008cd2537babd8849b5 [diff] |
Remove TEST_MAPPING, failing rust tests * rvc-dev has out-of-date .bp and TEST_MAPPING files, whose failing tests were ignored but now detected by newer tradefed test runners. * Remove/ignore these tests for rvc-dev and down-stream branches. Bug: b/162561729 Test: make and atest Merged-In: I4dd23de1154657dc6eea3ed72e9ba8b720a1e005 Change-Id: I7fe0b149b83117fddd949d28a024dfb981584ca8
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.
You can use this package in your project by adding the following to your Cargo.toml
:
[dependencies] unicode-xid = "0.1.0"