public class TryStatement : CodeNode, Statement {
public Block body { get; set; } ;
public Block? finally_body { get; set; } ;
public TryStatement ( Block body,
Block? finally_body,
SourceReference? source_reference = null ) ;
public void add_catch_clause ( CatchClause clause ) ;
public Gee.List< CatchClause > get_catch_clauses ( ) ;
}

public TryStatement ( Block body,
Block? finally_body,
SourceReference? source_reference = null ) ;
public Block body { get; set; } ;
public Block? finally_body { get; set; } ;
public void add_catch_clause ( CatchClause clause ) ;
public Gee.List< CatchClause > get_catch_clauses ( ) ;
Created by Valadoc