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

Method foreignArray

cmd/Tracker.java:128–131  ·  view source on GitHub ↗
(int v)

Source from the content-addressed store, hash-verified

126 return (byte[])this.get(v);
127 }
128 public synchronized long foreignArray(int v) {
129 Object[] a = new Object[v];
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);

Callers

nothing calls this directly

Calls 1

trackMethod · 0.95

Tested by

no test coverage detected