(long v, long val, int idx)
| 130 | return track(a); |
| 131 | } |
| 132 | public synchronized void foreignArraySet(long v, long val, int idx) { |
| 133 | Object[] a = (Object[])this.get(v); |
| 134 | a[idx] = this.get(val); |
| 135 | } |
| 136 | public synchronized long foreignArrayAt(long v, int idx) { |
| 137 | Object[] a = (Object[])this.get(v); |
| 138 | return track(a[idx]); |