MCPcopy Create free account
hub / github.com/gomatcha/matcha / foreignArraySet

Method foreignArraySet

cmd/Tracker.java:132–135  ·  view source on GitHub ↗
(long v, long val, int idx)

Source from the content-addressed store, hash-verified

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]);

Callers

nothing calls this directly

Calls 1

getMethod · 0.95

Tested by

no test coverage detected