( Type t )
| 318 | // True if this "isa" t; e.g. 17 isa TypeInteger.BOT |
| 319 | // Applies for pessimistic case |
| 320 | public boolean isa( Type t ) { return meet(t)==t; } |
| 321 | |
| 322 | // True if this "isa" t up to named structures |
| 323 | public boolean shallowISA( Type t ) { return isa(t); } |
no test coverage detected