xref: /third_party/rust/crates/syn/codegen/src/lookup.rs (revision fad3a1d3)
  • Home
  • History
  • Annotate Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
  • only in /third_party/rust/crates/syn/codegen/src/
1fad3a1d3Sopenharmony_ciuse syn_codegen::{Definitions, Node};
2fad3a1d3Sopenharmony_ci
3fad3a1d3Sopenharmony_cipub fn node<'a>(defs: &'a Definitions, name: &str) -> &'a Node {
4fad3a1d3Sopenharmony_ci    for node in &defs.types {
5fad3a1d3Sopenharmony_ci        if node.ident == name {
6fad3a1d3Sopenharmony_ci            return node;
7fad3a1d3Sopenharmony_ci        }
8fad3a1d3Sopenharmony_ci    }
9fad3a1d3Sopenharmony_ci    panic!("not found: {}", name)
10fad3a1d3Sopenharmony_ci}
11

Indexes created Thu Nov 07 10:32:03 CST 2024