(LFunction function, int begin, int end, int priority)
| 21 | protected boolean scopeUsed = false; |
| 22 | |
| 23 | public Block(LFunction function, int begin, int end, int priority) { |
| 24 | this.function = function; |
| 25 | this.begin = begin; |
| 26 | this.end = end; |
| 27 | this.closeRegister = -1; |
| 28 | this.priority = priority; |
| 29 | } |
| 30 | |
| 31 | abstract public void addStatement(Statement statement); |
| 32 |
nothing calls this directly
no outgoing calls
no test coverage detected