( Node n )
| 290 | |
| 291 | // Fetch without unboxing, searching up-Frame |
| 292 | static Object val( Node n ) { return F.get(n); } |
| 293 | // Fetch and unbox as primitive long |
| 294 | static long x( Node n ) { Object d = F.get(n); return d==null ? 0 : (Long)d; } |
| 295 | // Fetch and unbox as primitive double |