Absyn
Class ForStm
java.lang.Object
Absyn.Absyn
Absyn.Stm
Absyn.ForStm
public class ForStm
- extends Stm
"for" "(" [ VarDecList ] ";" [ Exp ] ";" [ ExpStm ( "," ExpStm )* ] ")" Stm
Fields inherited from class Absyn.Stm |
token |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
init
public java.util.List<VarDec> init
test
public Exp test
update
public java.util.List<ExpStm> update
body
public Stm body
ForStm
public ForStm(Parse.Token tok,
java.util.List<VarDec> i,
Exp t,
java.util.List<ExpStm> u,
Stm b)
accept
public <D,R> R accept(Visitor<D,R> v,
D d)
- Specified by:
accept
in class Absyn