scarf-syntax 0.2.1

A helper crate of scarf for expressing a SystemVerilog concrete syntax tree
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// =======================================================================
// mod.rs
// =======================================================================
//! CST Nodes from 1800-2023 A.5
pub mod udp_body;
pub mod udp_declaration;
pub mod udp_instantiation;
pub mod udp_ports;
pub use udp_body::*;
pub use udp_declaration::*;
pub use udp_instantiation::*;
pub use udp_ports::*;