(String leftExpression, String rightExpression, boolean useAs)
| 14 | private String rightExpression; |
| 15 | |
| 16 | public Alias(String leftExpression, String rightExpression, boolean useAs) { |
| 17 | this.leftExpression = leftExpression; |
| 18 | this.rightExpression = rightExpression; |
| 19 | this.useAs = useAs; |
| 20 | } |
| 21 | |
| 22 | public Alias(String leftExpression) { |
| 23 | this.leftExpression = leftExpression; |
nothing calls this directly
no outgoing calls
no test coverage detected