Absyn
Class VoidDecl

java.lang.Object
  extended by Absyn.Absyn
      extended by Absyn.MethodDecl
          extended by Absyn.VoidDecl
All Implemented Interfaces:
Visitable

public class VoidDecl
extends MethodDecl

Run (Void) Method Declaration structure.


Constructor Summary
VoidDecl(java.lang.String name, java.util.LinkedList<VarDecl> locals, 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

VoidDecl

public VoidDecl(java.lang.String name,
                java.util.LinkedList<VarDecl> locals,
                java.util.LinkedList<Stmt> stmts)
Method Detail

accept

public void accept(Visitor v)
Visitor pattern dispatch.

Specified by:
accept in interface Visitable
Overrides:
accept in class MethodDecl