(int type, Node target)
| 2487 | } |
| 2488 | |
| 2489 | private static Jump makeJump(int type, Node target) { |
| 2490 | Jump n = new Jump(type); |
| 2491 | n.target = target; |
| 2492 | return n; |
| 2493 | } |
| 2494 | |
| 2495 | private static Node makeReference(Node node) { |
| 2496 | int type = node.getType(); |
no outgoing calls
no test coverage detected