Type Alias glsl_lang::ast::ExprStatement
source · pub type ExprStatement = Node<ExprStatementData>;
Expand description
Type alias for Node<ExprStatementData>
.
Aliased Type§
struct ExprStatement {
pub content: ExprStatementData,
pub span: Option<NodeSpan>,
}
Fields§
§content: ExprStatementData
Contents of this syntax node
span: Option<NodeSpan>
Span in the input this node was parsed from
Trait Implementations§
source§impl Extractable<TranslationUnit> for ExprStatement
impl Extractable<TranslationUnit> for ExprStatement
source§impl Host for ExprStatement
impl Host for ExprStatement
source§impl HostMut for ExprStatement
impl HostMut for ExprStatement
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.