All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class espresso.syntaxtree.ExclusiveOrExpNode

java.lang.Object
   |
   +----espresso.syntaxtree.SyntaxTreeNode
           |
           +----espresso.syntaxtree.ExpressionNode
                   |
                   +----espresso.syntaxtree.ExclusiveOrExpNode

public class ExclusiveOrExpNode
extends ExpressionNode

Variable Index

 o left_d
 o right_d

Constructor Index

 o ExclusiveOrExpNode(ExpressionNode, ExpressionNode)

Method Index

 o evaluate(SymbolTable)
 o translate(ClassGen, MethodGen)
 o translateSynthesized(ClassGen, MethodGen)
First translate the expression and then synthesize it.
 o typeCheck(SymbolTable)

Variables

 o left_d
 public ExpressionNode left_d
 o right_d
 public ExpressionNode right_d

Constructors

 o ExclusiveOrExpNode
 public ExclusiveOrExpNode(ExpressionNode left,
                           ExpressionNode right)

Methods

 o evaluate
 public BigDecimal evaluate(SymbolTable stable) throws NotConstant
Overrides:
evaluate in class ExpressionNode
 o typeCheck
 public Type typeCheck(SymbolTable stable) throws TypeCheckError
Overrides:
typeCheck in class ExpressionNode
 o translate
 public void translate(ClassGen classGen,
                       MethodGen methodGen)
Overrides:
translate in class ExpressionNode
 o translateSynthesized
 public BranchHandle translateSynthesized(ClassGen classGen,
                                          MethodGen methodGen)
First translate the expression and then synthesize it.

Overrides:
translateSynthesized in class ExpressionNode

All Packages  Class Hierarchy  This Package  Previous  Next  Index