Returns true if this node's meaning matches the specified type. @param type the type to check @return true if the node's meaning is of the specified type
(int type)
| 91 | * @return {@code true} if the node's meaning is of the specified type |
| 92 | */ |
| 93 | public boolean isA(int type) { |
| 94 | return Types.ofType(getMeaning(), type); |
| 95 | } |
| 96 | |
| 97 | /** |
| 98 | * Returns {@code true} if this node's meaning matches any of the specified types. |
no test coverage detected