Returns true if this node can be coerced to the specified type. This is determined by the type hierarchy defined in Types. @param type the type to check against @return true if coercion is possible
(int type)
| 81 | * @return {@code true} if coercion is possible |
| 82 | */ |
| 83 | public boolean canMean(int type) { |
| 84 | return Types.canMean(getMeaning(), type); |
| 85 | } |
| 86 | |
| 87 | /** |
| 88 | * Returns {@code true} if this node's meaning matches the specified type. |
nothing calls this directly
no test coverage detected