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