Absyn
Class WhileStm

java.lang.Object
  extended by Absyn.Absyn
      extended by Absyn.Stm
          extended by Absyn.WhileStm

public class WhileStm
extends Stm

"while" "(" Exp ")" Stm


Field Summary
 Stm body
           
 Exp test
           
 
Fields inherited from class Absyn.Stm
token
 
Constructor Summary
WhileStm(Parse.Token tok, Exp t, Stm b)
           
 
Method Summary
<D,R> R
accept(Visitor<D,R> v, D d)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

test

public Exp test

body

public Stm body
Constructor Detail

WhileStm

public WhileStm(Parse.Token tok,
                Exp t,
                Stm b)
Method Detail

accept

public <D,R> R accept(Visitor<D,R> v,
                      D d)
Specified by:
accept in class Absyn