Enum xswag_syntax_java::ast::block::BlockStatement
[−]
[src]
pub enum BlockStatement {
LocalVariableDecl {
final_: bool,
ty: Type,
vars: Vec<VariableDeclarator>,
},
Statement(Statement),
}Variants
LocalVariableDeclFields of LocalVariableDecl
final_: bool | |
ty: Type | |
vars: Vec<VariableDeclarator> |
Statement(Statement)Trait Implementations
impl Clone for BlockStatement[src]
fn clone(&self) -> BlockStatement
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more