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

Method track

cmd/Tracker.java:19–26  ·  view source on GitHub ↗
(Object v)

Source from the content-addressed store, hash-verified

17 return instance;
18 }
19 public synchronized long track(Object v) {
20 if (v == null) {
21 return 0;
22 }
23 this.maxKey += 1;
24 this.mapTable.put(this.maxKey, v);
25 return this.maxKey;
26 }
27 public synchronized void untrack(long v) {
28 if (v == 0) {
29 return;

Callers 11

foreignBridgeMethod · 0.95
foreignCallMethod · 0.95
foreignBoolMethod · 0.95
foreignInt64Method · 0.95
foreignFloat64Method · 0.95
foreignGoRefMethod · 0.95
foreignStringMethod · 0.95
foreignBytesMethod · 0.95
foreignArrayMethod · 0.95
foreignArrayAtMethod · 0.95
GoValueMethod · 0.80

Calls 1

putMethod · 0.80

Tested by

no test coverage detected