(LFunction function, int begin, int end, CloseType closeType, int closeLine, boolean repeat)
| 15 | private ConstantExpression condition; |
| 16 | |
| 17 | public AlwaysLoop(LFunction function, int begin, int end, CloseType closeType, int closeLine, boolean repeat) { |
| 18 | super(function, begin, end, closeType, closeLine, 0); |
| 19 | this.repeat = repeat; |
| 20 | condition = null; |
| 21 | } |
| 22 | |
| 23 | @Override |
| 24 | public int scopeEnd() { |
nothing calls this directly
no outgoing calls
no test coverage detected