Package | Description |
---|---|
composite.two |
Modifier and Type | Class and Description |
---|---|
private static class |
ExprFactory.Const |
private static class |
ExprFactory.Minus |
private static class |
ExprFactory.Mult |
private static class |
ExprFactory.Plus |
private static class |
ExprFactory.Quot |
Modifier and Type | Field and Description |
---|---|
private Expr |
ExprFactory.Plus.l |
private Expr |
ExprFactory.Minus.l |
private Expr |
ExprFactory.Mult.l |
private Expr |
ExprFactory.Quot.l |
private Expr |
ExprFactory.Plus.r |
private Expr |
ExprFactory.Minus.r |
private Expr |
ExprFactory.Mult.r |
private Expr |
ExprFactory.Quot.r |
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) |
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 |
ExprFactory.newQuot(Expr l,
Expr r) |
Constructor and Description |
---|
Minus(Expr l,
Expr r) |
Mult(Expr l,
Expr r) |
Plus(Expr l,
Expr r) |
Quot(Expr l,
Expr r) |