Absyn
Class OrExpr

java.lang.Object
  extended by Absyn.Absyn
      extended by Absyn.Expr
          extended by Absyn.BinOpExpr
              extended by Absyn.OrExpr
All Implemented Interfaces:
Visitable

public class OrExpr
extends BinOpExpr

Boolean (Logical) Or Expressions.


Constructor Summary
OrExpr(Expr e1, Expr e2)
           
 
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

OrExpr

public OrExpr(Expr e1,
              Expr e2)
Method Detail

accept

public void accept(Visitor v)
Visitor pattern dispatch.

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