* Determine whether it's an enumeration type * @return true if the type is known and it's an enumeration type */
| 640 | * @return true if the type is known and it's an enumeration type |
| 641 | */ |
| 642 | bool isEnumType() const { |
| 643 | return type() && type()->isEnumType(); |
| 644 | } |
| 645 | |
| 646 | bool isMaybeUnused() const { |
| 647 | return getFlag(fIsMaybeUnused); |
nothing calls this directly
no test coverage detected