public class Block : Symbol, Statement {
public weak bool contains_jump_statement { get; set; } ;
public Block ( SourceReference? source_reference = null ) ;
public void add_statement ( Statement stmt ) ;
public Gee.Collection< Statement > get_statements ( ) ;
public void add_local_variable ( LocalVariable local ) ;
public Gee.Collection< LocalVariable > get_local_variables ( ) ;
}

public Block ( SourceReference? source_reference = null ) ;
public weak bool contains_jump_statement { get; set; } ;
public void add_statement ( Statement stmt ) ;
public Gee.Collection< Statement > get_statements ( ) ;
public void add_local_variable ( LocalVariable local ) ;
public Gee.Collection< LocalVariable > get_local_variables ( ) ;
Created by Valadoc