( Node n )
| 289 | |
| 290 | // Fetch without unboxing, searching up-Frame |
| 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 |