( Type t )
| 191 | |
| 192 | // True if this "isa" t; e.g. 17 isa TypeInteger.BOT |
| 193 | public boolean isa( Type t ) { return meet(t)==t; } |
| 194 | |
| 195 | // True if this "isa" t up to named structures |
| 196 | public boolean shallowISA( Type t ) { return isa(t); } |
no test coverage detected