Struct moore_svlog::hir::Module [−][src]
pub struct Module<'a> {
pub ast: &'a Module<'a>,
pub ports_new: &'a PortList<'a>,
pub params: &'a [NodeId],
pub block: ModuleBlock,
pub last_rib: NodeId,
}
Expand description
A module.
Fields
ast: &'a Module<'a>
The AST node.
ports_new: &'a PortList<'a>
The ports of the module.
params: &'a [NodeId]
The parameters of the module.
block: ModuleBlock
The contents of the module.
last_rib: NodeId
The bottom of the name scope tree.
Methods from Deref<Target = &'a Module<'a>>
Check if this is an implicit type.
Check if this is an implicit type.
Trait Implementations
Obtain a span which can be used to refer to this node in error messages
presented to humans. This will generally be the name for things like
entities, processes, and variables. Defaults to return whatever span()
returns. Read more