sdivi-patterns 0.2.12

Pattern fingerprinting and catalog for sdivi-rust
Documentation
1
2
3
4
5
6
7
8
9
//! Node kinds classified as resource-management patterns.
//!
//! These node kinds correspond to the `resource_management` category in the
//! [`PatternCatalog`](crate::catalog::PatternCatalog).

/// Tree-sitter node kinds for resource-management patterns.
///
/// - `macro_invocation`: macro calls (e.g. `drop!`, `vec!`, `println!`)
pub const NODE_KINDS: &[&str] = &["macro_invocation"];