(Term t)
| 257 | } |
| 258 | |
| 259 | public static boolean methodStaticTermIsJNull(Term t) { |
| 260 | return t.hasFunctor("@", 1) && t.arg(1).hasFunctor("null", 0); |
| 261 | } |
| 262 | |
| 263 | public boolean methodInstanceTermIsJNull(Term t) { |
| 264 | return t.hasFunctor("@", 1) && t.arg(1).hasFunctor("null", 0); |
nothing calls this directly
no test coverage detected