Tree
Class BINOP.DIV

java.lang.Object
  extended by Tree.Exp
      extended by Tree.BINOP
          extended by Tree.BINOP.DIV
All Implemented Interfaces:
java.lang.Cloneable
Enclosing class:
BINOP

public static class BINOP.DIV
extends BINOP


Nested Class Summary
 
Nested classes inherited from class Tree.BINOP
BINOP.ADD, BINOP.AND, BINOP.DIV, BINOP.MUL, BINOP.OR, BINOP.SLL, BINOP.SRA, BINOP.SRL, BINOP.SUB, BINOP.XOR
 
Field Summary
 
Fields inherited from class Tree.BINOP
left, right
 
Constructor Summary
BINOP.DIV(Exp l, Exp r)
           
 
Method Summary
<R,D> R
accept(Visitor<R,D> v, D d)
           
 
Methods inherited from class Tree.BINOP
build, kids
 
Methods inherited from class Tree.Exp
isAtom
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

BINOP.DIV

public BINOP.DIV(Exp l,
                 Exp r)
Method Detail

accept

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