AST node representing the set of assignment operators such as =, = and +=.
| 11 | * +=}. |
| 12 | */ |
| 13 | public class Assignment extends InfixExpression { |
| 14 | |
| 15 | public Assignment() {} |
| 16 | |
| 17 | public Assignment(int pos) { |
| 18 | super(pos); |
| 19 | } |
| 20 | |
| 21 | public Assignment(int pos, int len) { |
| 22 | super(pos, len); |
| 23 | } |
| 24 | |
| 25 | public Assignment(int pos, int len, AstNode left, AstNode right) { |
| 26 | super(pos, len, left, right); |
| 27 | } |
| 28 | |
| 29 | public Assignment(AstNode left, AstNode right) { |
| 30 | super(left, right); |
| 31 | } |
| 32 | |
| 33 | public Assignment(int operator, AstNode left, AstNode right, int operatorPos) { |
| 34 | super(operator, left, right, operatorPos); |
| 35 | } |
| 36 | } |
nothing calls this directly
no outgoing calls
no test coverage detected