( Type t )
| 171 | |
| 172 | // True if this "isa" t; e.g. 17 isa TypeInteger.BOT |
| 173 | public boolean isa( Type t ) { return meet(t)==t; } |
| 174 | |
| 175 | /** Compute greatest lower bound in the lattice */ |
| 176 | public Type glb() { return _type==TCTRL ? CONTROL : BOTTOM; } |