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

Method x

chapter21/src/test/java/com/seaofnodes/simple/Eval2.java:293–293  ·  view source on GitHub ↗
( Node n )

Source from the content-addressed store, hash-verified

291 static Object val( Node n ) { return F.get(n); }
292 // Fetch and unbox as primitive long
293 static long x( Node n ) { Object d = F.get(n); return d==null ? 0 : (Long) F.get(n); }
294 // Fetch and unbox as primitive double
295 static double d( Node n ) { Object d = F.get(n); return d==null ? 0 : (Double)F.get(n); }
296 // Fetch and unbox a function constant

Callers 6

computeMethod · 0.95
loadMethod · 0.95
storeMethod · 0.95
XrFunction · 0.45
JrFunction · 0.45
LmFunction · 0.45

Calls 1

getMethod · 0.45

Tested by

no test coverage detected