| 18 | import java.util.List; |
| 19 | |
| 20 | public interface BytecodeNode |
| 21 | { |
| 22 | List<BytecodeNode> getChildNodes(); |
| 23 | |
| 24 | void accept(MethodVisitor visitor, MethodGenerationContext generationContext); |
| 25 | |
| 26 | <T> T accept(BytecodeNode parent, BytecodeVisitor<T> visitor); |
| 27 | } |
no outgoing calls
no test coverage detected