Enum xswag_syntax_java::ast::block::BlockStatement [] [src]

pub enum BlockStatement {
    LocalVariableDecl {
        final_: bool,
        ty: Type,
        vars: Vec<VariableDeclarator>,
    },
    Statement(Statement),
}

Variants

LocalVariableDecl

Fields

final_: bool
ty: Type
vars: Vec<VariableDeclarator>
Statement(Statement)

Trait Implementations

impl Debug for BlockStatement
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

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