mirror of
https://gitee.com/openharmony/third_party_rust_syn
synced 2024-11-23 16:00:10 +00:00
60 lines
1.4 KiB
Rust
60 lines
1.4 KiB
Rust
#[macro_use]
|
|
mod macros;
|
|
|
|
#[test]
|
|
fn test_basic() {
|
|
let content = "#!/usr/bin/env rustx\nfn main() {}";
|
|
let file = syn::parse_file(content).unwrap();
|
|
snapshot!(file, @r###"
|
|
File {
|
|
shebang: Some("#!/usr/bin/env rustx"),
|
|
items: [
|
|
Item::Fn {
|
|
vis: Inherited,
|
|
sig: Signature {
|
|
ident: "main",
|
|
generics: Generics,
|
|
output: Default,
|
|
},
|
|
block: Block,
|
|
},
|
|
],
|
|
}
|
|
"###);
|
|
}
|
|
|
|
#[test]
|
|
fn test_comment() {
|
|
let content = "#!//am/i/a/comment\n[allow(dead_code)] fn main() {}";
|
|
let file = syn::parse_file(content).unwrap();
|
|
snapshot!(file, @r###"
|
|
File {
|
|
attrs: [
|
|
Attribute {
|
|
style: Inner,
|
|
path: Path {
|
|
segments: [
|
|
PathSegment {
|
|
ident: "allow",
|
|
arguments: None,
|
|
},
|
|
],
|
|
},
|
|
tokens: TokenStream(`(dead_code)`),
|
|
},
|
|
],
|
|
items: [
|
|
Item::Fn {
|
|
vis: Inherited,
|
|
sig: Signature {
|
|
ident: "main",
|
|
generics: Generics,
|
|
output: Default,
|
|
},
|
|
block: Block,
|
|
},
|
|
],
|
|
}
|
|
"###);
|
|
}
|