Package | Description |
---|---|
composite.three |
Modifier and Type | Class and Description |
---|---|
private static class |
ExprFactory.BinOp |
private static class |
ExprFactory.Const |
private static class |
ExprFactory2.BinOp |
private static class |
ExprFactory2.Const |
private static class |
ExprFactory2.PlusOp |
Modifier and Type | Field and Description |
---|---|
private Expr |
ExprFactory.BinOp.l |
private Expr |
ExprFactory2.BinOp.l |
private Expr |
ExprFactory.BinOp.r |
private Expr |
ExprFactory2.BinOp.r |
Modifier and Type | Method and Description |
---|---|
static Expr |
ExprFactory.newConst(int v) |
static Expr |
ExprFactory2.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 |
ExprFactory2.newPlus(Expr l,
Expr r) |
static Expr |
ExprFactory.newQuot(Expr l,
Expr r) |
Modifier and Type | Method and Description |
---|---|
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 |
ExprFactory2.newPlus(Expr l,
Expr r) |
static Expr |
ExprFactory.newQuot(Expr l,
Expr r) |
Constructor and Description |
---|
BinOp(Expr l,
ExprFactory.Op op,
Expr r) |
BinOp(Expr l,
java.lang.String opString,
Expr r) |
PlusOp(Expr l,
Expr r) |