Package | Description |
---|---|
composite.four |
Modifier and Type | Class and Description |
---|---|
(package private) class |
BinOp |
(package private) class |
Const |
(package private) class |
NaryOp |
Modifier and Type | Field and Description |
---|---|
private Expr[] |
NaryOp.args |
private Expr |
BinOp.l |
private Expr |
BinOp.r |
private Expr |
NaryOp.zero |
private Expr |
NaryOpBuilder.zero |
Modifier and Type | Field and Description |
---|---|
private java.util.List<Expr> |
NaryOpBuilder.args |
Modifier and Type | Method and Description |
---|---|
static Expr |
ExprFactory.newConst(int v) |
static Expr |
ExprFactory.newMinus(Expr l,
Expr r) |
static Expr |
ExprFactory.newMult(Expr l,
Expr r) |
static Expr |
ExprFactory.newPlus(Expr l,
Expr r) |
static Expr |
ExprFactory.newQuot(Expr l,
Expr r) |
Expr |
ExprBuilder.toExpr() |
Expr |
NaryOpBuilder.toExpr() |
Modifier and Type | Method and Description |
---|---|
void |
ExprBuilder.add(Expr e) |
void |
NaryOpBuilder.add(Expr e) |
static Expr |
ExprFactory.newMinus(Expr l,
Expr r) |
static Expr |
ExprFactory.newMult(Expr l,
Expr r) |
static Expr |
ExprFactory.newPlus(Expr l,
Expr r) |
static Expr |
ExprFactory.newQuot(Expr l,
Expr r) |
Constructor and Description |
---|
BinOp(Expr l,
Op op,
Expr r) |
NaryOp(Expr[] args,
Op op,
Expr zero) |
NaryOp(Expr[] args,
Op op,
Expr zero) |
NaryOpBuilder(Op op,
Expr zero) |