Absyn
Class BlockStmt

java.lang.Object
  extended by Absyn.Absyn
      extended by Absyn.Stmt
          extended by Absyn.BlockStmt
All Implemented Interfaces:
Visitable

public class BlockStmt
extends Stmt

Curly-brace delimited block of statements.


Constructor Summary
BlockStmt(java.util.LinkedList<Stmt> stmts)
           
 
Method Summary
 void accept(Visitor v)
          Visitor pattern dispatch.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

BlockStmt

public BlockStmt(java.util.LinkedList<Stmt> stmts)
Method Detail

accept

public void accept(Visitor v)
Visitor pattern dispatch.

Specified by:
accept in interface Visitable
Specified by:
accept in class Stmt