(LFunction function)
| 12 | private final CodeExtract extract; |
| 13 | |
| 14 | public Function(LFunction function) { |
| 15 | version = function.header.version; |
| 16 | constants = new Constant[function.constants.length]; |
| 17 | for(int i = 0; i < constants.length; i++) { |
| 18 | constants[i] = new Constant(function.constants[i]); |
| 19 | } |
| 20 | extract = function.header.extractor; |
| 21 | } |
| 22 | |
| 23 | public boolean isConstant(int register) { |
| 24 | return extract.is_k(register); |
nothing calls this directly
no outgoing calls
no test coverage detected