Method
loadLocal
(AbstractInsnNode insn, InsnValue value)
Source from the content-addressed store, hash-verified
| 88 | } |
| 89 | |
| 90 | public InsnValue loadLocal(AbstractInsnNode insn, InsnValue value) throws AnalyzerException { |
| 91 | // Pretty sure with how this is called nothing needs to be done... |
| 92 | return value; |
| 93 | } |
| 94 | |
| 95 | public InsnValue loadFromArray(AbstractInsnNode insn, InsnValue value1, InsnValue indexValue) throws AnalyzerException { |
| 96 | Object indexObj = indexValue.getValue(), arrayObj = value1.getValue(); |
Tested by
no test coverage detected