Uses of Class
pt.compiler.parser.ast.expr.BinaryExpr.Operator

Packages that use BinaryExpr.Operator
pt.compiler.parser.ast.expr   
 

Uses of BinaryExpr.Operator in pt.compiler.parser.ast.expr
 

Methods in pt.compiler.parser.ast.expr that return BinaryExpr.Operator
 BinaryExpr.Operator BinaryExpr.getOperator()
           
static BinaryExpr.Operator BinaryExpr.Operator.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static BinaryExpr.Operator[] BinaryExpr.Operator.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Constructors in pt.compiler.parser.ast.expr with parameters of type BinaryExpr.Operator
BinaryExpr(int line, int column, Expression left, Expression right, BinaryExpr.Operator op)