(Node n)
| 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 |
| 297 | static TypeFunPtr tfp(Node n) { return (TypeFunPtr)F.get(n); } |
| 298 | // Fetch and unbox a closure |
| 299 | static Closure clj(Node n) { return (Closure)F.get(n); } |
| 300 |