( Node use )
| 232 | // Return true if the output list is empty afterward. |
| 233 | // Error is 'use' does not exist; ok for 'use' to be null. |
| 234 | protected boolean delUse( Node use ) { |
| 235 | _outputs.del(_outputs.find(use)); |
| 236 | return _outputs.isEmpty(); |
| 237 | } |
| 238 | |
| 239 | // Shortcut for "popping" until n nodes. A "pop" is basically a |
| 240 | // setDef(last,null) followed by lowering the nIns() count. |