(Reference<?> ref)
| 119 | } |
| 120 | |
| 121 | private void insert(Reference<?> ref) { |
| 122 | assert next != null; |
| 123 | ref.prev = this; |
| 124 | ref.next = this.next; |
| 125 | ref.next.prev = ref; |
| 126 | next = ref; |
| 127 | } |
| 128 | |
| 129 | abstract void decRef(Context ctx, long z3Obj); |
| 130 | } |