Type Alias glsl_lang::ast::CompoundStatement
source · pub type CompoundStatement = Node<CompoundStatementData>;
Expand description
Type alias for Node<CompoundStatementData>
.
Aliased Type§
struct CompoundStatement {
pub content: CompoundStatementData,
pub span: Option<NodeSpan>,
}
Fields§
§content: CompoundStatementData
Contents of this syntax node
span: Option<NodeSpan>
Span in the input this node was parsed from
Trait Implementations§
source§impl Host for CompoundStatement
impl Host for CompoundStatement
source§impl HostMut for CompoundStatement
impl HostMut for CompoundStatement
source§fn visit_mut<V>(&mut self, visitor: &mut V)where
V: VisitorMut,
fn visit_mut<V>(&mut self, visitor: &mut V)where
V: VisitorMut,
Visit an AST node.