MCPcopy Create free account
hub / github.com/SeaOfNodes/Simple / store

Method store

chapter24/src/test/java/com/seaofnodes/simple/Eval2.java:391–402  ·  view source on GitHub ↗
( StoreNode st )

Source from the content-addressed store, hash-verified

389 }
390
391 private static Object store( StoreNode st ) {
392 if( st._name.equals("#") )
393 return "$mem"; // Eval stores the length in the java object[], no need to set it now
394 TypeMemPtr tmp = (TypeMemPtr)st.ptr()._type;
395 Object[] fs = (Object[])val(st.ptr());
396 int idx = tmp._obj.isAry()
397 ? offToIdx(x(st.off()),tmp._obj)
398 : tmp._obj.find(st._name);
399 Object val = val(st.val());
400 fs[idx] = val;
401 return "$mem";
402 }
403
404
405 // ------------------------------------------------------------------------

Callers 1

computeMethod · 0.95

Calls 8

valMethod · 0.95
offToIdxMethod · 0.95
xMethod · 0.95
equalsMethod · 0.45
ptrMethod · 0.45
isAryMethod · 0.45
offMethod · 0.45
findMethod · 0.45

Tested by

no test coverage detected